aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJakob Borg <jakob@kastelo.net>2019-09-22 11:33:29 +0100
committerGitHub <noreply@github.com>2019-09-22 11:33:29 +0100
commitc744a75cddb724857f5081eabae00315ddfa8a48 (patch)
tree0917aa5906bf6727ccd4d5d569a9e4b64629a4cb /Dockerfile
parent35b699dc77a23df3511940fb58d78a47308259fe (diff)
downloadsyncthing-c744a75cddb724857f5081eabae00315ddfa8a48.tar.gz
syncthing-c744a75cddb724857f5081eabae00315ddfa8a48.zip
docker: Make it easy to disable the GUI, document it (#6021)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 701681adb..7321089bd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,4 +24,5 @@ ENV PUID=1000 PGID=1000
HEALTHCHECK --interval=1m --timeout=10s \
CMD nc -z localhost 8384 || exit 1
-ENTRYPOINT ["/bin/entrypoint.sh", "-home", "/var/syncthing/config", "-gui-address", "0.0.0.0:8384"]
+ENV STGUIADDRESS=0.0.0.0:8384
+ENTRYPOINT ["/bin/entrypoint.sh", "-home", "/var/syncthing/config"]