|
@@ -18,15 +18,15 @@ RUN apk add --no-cache ca-certificates
|
|
|
|
|
|
|
|
COPY --from=builder /go/src/github.com/syncthing/syncthing/syncthing /bin/syncthing
|
|
COPY --from=builder /go/src/github.com/syncthing/syncthing/syncthing /bin/syncthing
|
|
|
|
|
|
|
|
-RUN echo 'syncthing:x:1000:1000::/var/syncthing:/sbin/nologin' >> /etc/passwd \
|
|
|
|
|
- && echo 'syncthing:!::0:::::' >> /etc/shadow \
|
|
|
|
|
- && chown syncthing /var/syncthing
|
|
|
|
|
|
|
+RUN apk update \
|
|
|
|
|
+ && apk add su-exec
|
|
|
|
|
|
|
|
-USER syncthing
|
|
|
|
|
ENV STNOUPGRADE=1
|
|
ENV STNOUPGRADE=1
|
|
|
|
|
+ENV PUID=1000
|
|
|
|
|
+ENV PGID=1000
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=1m --timeout=10s \
|
|
HEALTHCHECK --interval=1m --timeout=10s \
|
|
|
CMD nc -z localhost 8384 || exit 1
|
|
CMD nc -z localhost 8384 || exit 1
|
|
|
|
|
|
|
|
-ENTRYPOINT ["/bin/syncthing", "-home", "/var/syncthing/config", "-gui-address", "0.0.0.0:8384"]
|
|
|
|
|
-
|
|
|
|
|
|
|
+ENTRYPOINT chown $PUID:$PGID /var/syncthing \
|
|
|
|
|
+ && su-exec $PUID:$PGID /bin/syncthing -home /var/syncthing/config -gui-address 0.0.0.0:8384
|