docker-infrastructure/syncthing/docker-compose.yml

19 lines
406 B
YAML

services:
syncthing:
image: ghcr.io/linuxserver/syncthing
container_name: syncthing
volumes:
# Config
- $APPDATA/syncthing:/config
# Sync data
# - $SYNCTHINGDATA:/data
- $MEDIADIR/movies:/movies
environment:
PUID: $PUID
PGID: $PGID
TZ: $TZ
ports:
- 8384:8384
- 22000:22000
- 21027:21027/udp
restart: unless-stopped