2021-04-21 00:55:42 +00:00
|
|
|
# [Syncthing](https://syncthing.net) replaces proprietary sync and cloud
|
|
|
|
# services with something open, trustworthy and decentralized. Your data is your
|
|
|
|
# data alone and you deserve to choose where it is stored, if it is shared with
|
|
|
|
# some third party and how it's transmitted over the Internet.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=syncthing \
|
|
|
|
--hostname={{ project_name }} `# optional` `# Optionally the hostname can be defined.` \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 8384:8384 `# Application WebUI` \
|
2021-05-04 00:47:48 +00:00
|
|
|
-p 22000:22000/tcp `# Listening port (TCP)` \
|
|
|
|
-p 22000:22000/udp `# Listening port (UDP)` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 21027:21027/udp `# Protocol discovery` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/syncthing/config:/config `# Configuration files.` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/syncthing/data1:/data1 `# Data1` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/syncthing/data2:/data2 `# Data2` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/syncthing
|