coolify/templates/compose/syncthing.yaml

21 lines
795 B
YAML
Raw Normal View History

2024-02-05 16:45:46 +01:00
# documentation: https://syncthing.net/
# slogan: Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how its transmitted over the internet.
# tags: filestorage, data, synchronization
services:
syncthing:
image: 'lscr.io/linuxserver/syncthing:latest'
environment:
- SERVICE_FQDN_SYNCTHING
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- 'syncthing-config:/config'
- 'syncthing-data1:/data1'
- 'syncthing-data2:/data2'
2024-02-05 16:45:46 +01:00
ports:
- '22000:22000/tcp'
- '22000:22000/udp'
- '21027:21027/udp'