scripts/fogcutter/docker/syncthing/launch.sh

20 lines
469 B
Bash
Raw Normal View History

2019-08-25 15:21:50 -04:00
#!/bin/bash
2019-08-25 15:27:22 -04:00
# Assumes pew-net exists
# Create mounted dirs (as non-root) before launching
2019-08-25 15:21:50 -04:00
docker run \
--name syncthing \
--detach \
--restart unless-stopped \
--env PUID=1000 \
--env PGID=1000 \
--env TZ=Europe/London \
--env UMASK_SET=022 \
--volume $PWD/config:/config:rw \
--volume $PWD/sync:/sync-docker:rw \
--publish 22000:22000 \
--publish 21027:21027/udp \
--network pew-net \
linuxserver/syncthing:latest