Compare commits

...

2 commits

Author SHA1 Message Date
f 54fc589e00 fixes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-03-07 16:55:47 -03:00
f 08a7a764b1 copy stuff on last step 2022-03-02 13:06:38 -03:00
2 changed files with 4 additions and 3 deletions

View file

@ -3,8 +3,6 @@ ARG BASE_IMAGE=sutty/monit
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
MAINTAINER "f <f@sutty.nl>"
COPY ./syncthingd.sh /usr/local/bin/syncthingd
# Syncthing runs with Sutty's uid and gid so ownership is kept, because
# they are not synced.
RUN getent group 82 || addgroup -g 82 -S www-data
@ -13,6 +11,7 @@ RUN adduser -s /bin/sh -G www-data -D -u 1000 -h /home/syncthing syncthing
RUN apk add --no-cache ca-certificates daemonize syncthing
COPY ./monit.conf /etc/monit.d/syncthing.conf
COPY ./syncthingd.sh /usr/local/bin/syncthingd
EXPOSE 22000
EXPOSE 22000/udp

View file

@ -2,6 +2,7 @@
pid=/tmp/syncthing.pid
dir=/home/syncthing
log=/home/syncthing/syncthing.log
case $1 in
start)
@ -10,8 +11,9 @@ case $1 in
install -dm 2750 -o syncthing -g syncthing ${dir}/Sync/.stfolder
daemonize -p ${pid} -l ${pid} -u syncthing -c ${dir} \
-a -e ${log} -o ${log} \
/usr/bin/syncthing serve \
--skip-port-probing \
--gui-address=http://[::]:8384 \
--no-browser \
--no-restart \
--no-upgrade \