updated syncthing

main
Ricard Illa 2021-05-11 11:09:08 +02:00
parent dc49488585
commit 0a4ec8e3a1
1 changed files with 3 additions and 5 deletions

View File

@ -3,7 +3,7 @@
FROM alpine:3.13
ARG ARCH
ENV VER v1.13.1
ENV VER v1.16.1
ENV REL syncthing-linux-${ARCH}-${VER}
ENV URI https://github.com/syncthing/syncthing/releases/download/${VER}/${REL}.tar.gz
@ -13,11 +13,9 @@ RUN adduser -u 1001 -h /var/lib/syncthing -D syncthing && \
addgroup -S -g 1005 books && addgroup syncthing books && \
addgroup -S -g 1006 buku && addgroup syncthing buku
RUN mkdir -p /data && chown -R syncthing:syncthing /data && \
mkdir -p /data/books && chown -R syncthing:books /data/books && chmod '2775' /data/books && \
mkdir -p /data/buku && chown -R syncthing:buku /data/buku && chmod '2775' /data/buku
RUN mkdir -p /data && chown -R syncthing:syncthing /data
VOLUME /data /data/books /data/buku /var/lib/syncthing
VOLUME /data /var/lib/syncthing
RUN cd /tmp && \
wget ${URI} && \