coolify/templates/compose/syncthing.yaml

23 lines
591 B
YAML
Raw Normal View History

2024-02-05 16:45:46 +01:00
# documentation: https://syncthing.net/
2024-02-22 11:53:25 +01:00
# slogan: Syncthing synchronizes files between two or more computers in real time.
2024-02-05 16:45:46 +01:00
# tags: filestorage, data, synchronization
2024-02-20 15:07:12 +01:00
# logo: svgs/syncthing.svg
2024-03-13 09:27:42 +01:00
# port: 8384
2024-02-05 16:45:46 +01:00
services:
syncthing:
image: 'lscr.io/linuxserver/syncthing:latest'
environment:
2024-03-13 09:27:42 +01:00
- SERVICE_FQDN_SYNCTHING_8384
2024-02-05 16:45:46 +01:00
- 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'