docker-infrastructure/syncthing/docker-compose.yml

18 lines
371 B
YAML

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