From 18ad912e113253d61796c0eab0e867f9d2e9d9b6 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 28 Aug 2021 13:54:09 +0200 Subject: [PATCH] Update Dockerfile --- joplin/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/joplin/Dockerfile b/joplin/Dockerfile index c09d1b7dd..cab53ea1a 100644 --- a/joplin/Dockerfile +++ b/joplin/Dockerfile @@ -4,6 +4,7 @@ FROM florider89/joplin-server:master ARG BASHIO_VERSION=0.13.1 USER root +VOLUME [ data] RUN \ ################ # Install apps # @@ -22,10 +23,12 @@ RUN \ | tar -xzf - --strip 1 -C /tmp/bashio \ && mv /tmp/bashio/lib /usr/lib/bashio \ && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ - && rm -rf /tmp/bashio + && rm -rf /tmp/bashio \ + \ ################### # Configure image # ################### + && chmod u+r /data/options.json # Copy root filesystem ARG user=joplin