forked from sytone/obsidian-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockerfile.arm64
44 lines (37 loc) · 1.22 KB
/
dockerfile.arm64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# FROM ghcr.io/linuxserver/baseimage-rdesktop-web:focal-20210824
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbullseye
ARG OBSIDIAN_VERSION=1.3.5
ARG ARCH=arm64
# Update and install extra packages.
RUN echo "**** install packages ****" && \
apt-get update && \
apt-get install -y --no-install-recommends \
git \
curl \
libnss3 \
zlib1g-dev \
dbus-x11 \
uuid-runtime && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
# Download and install Obsidian
RUN echo "**** download obsidian ****" && \
curl -L -o /obsidian.AppImage \
"https://github.com/obsidianmd/obsidian-releases/releases/download/v${OBSIDIAN_VERSION}/Obsidian-${OBSIDIAN_VERSION}-${ARCH}.AppImage" && \
chmod +x /obsidian.AppImage && \
/obsidian.AppImage --appimage-extract
# Environment variables
ENV CUSTOM_PORT="8080" \
CUSTOM_HTTPS_PORT="8443" \
CUSTOM_USER="" \
PASSWORD="" \
SUBFOLDER="" \
TITLE="Obsidian v$OBSIDIAN_VERSION" \
FM_HOME="/vaults"
# Add local files
COPY root/ /
# Expose ports and volumes
EXPOSE 8080 27123 27124
VOLUME ["/config","/vaults"]
# Define a healthcheck
HEALTHCHECK CMD curl --fail http://localhost:8080/ || exit 1