You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.1 KiB
Bash

# [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.
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` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 8384:8384 `# Application WebUI` \
-p 22000:22000/tcp `# Listening port (TCP)` \
-p 22000:22000/udp `# Listening port (UDP)` \
-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` \
--sysctl="net.core.rmem_max=2097152" \
--restart unless-stopped \
ghcr.io/linuxserver/syncthing