16 lines
438 B
YAML
16 lines
438 B
YAML
services:
|
|
<< service_name >>:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
container_name: << service_name >>
|
|
ports:
|
|
- "<< web_port >>:8384"
|
|
- "<< sync_port >>:22000/tcp"
|
|
- "<< sync_port >>:22000/udp"
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- << data_dir >>/<< service_name >>/config:/config
|
|
- << sync_dir >>:/data
|
|
restart: unless-stopped
|