From b558004fb84513083d6753e79eb885156e386f11 Mon Sep 17 00:00:00 2001 From: mcrosson Date: Mon, 16 Jul 2018 19:13:57 +0000 Subject: [PATCH] Expose port 3001 for safe http port ; fix STORAGE variable so it doesn't break the config at runtime --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da60937bf..5b22f39bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,13 +8,13 @@ RUN apk add --no-cache git tini \ && npm install -g bower \ && bower install --allow-root -EXPOSE 3000 +EXPOSE 3000 3001 VOLUME /cryptpad/datastore VOLUME /cryptpad/customize ENV USE_SSL=false -ENV STORAGE='./storage/file' +ENV STORAGE=\'./storage/file\' ENV LOG_TO_STDOUT=true CMD ["/sbin/tini", "--", "/cryptpad/container-start.sh"]