19 lines
431 B
YAML
19 lines
431 B
YAML
name: syncthing
|
|
|
|
services:
|
|
syncthing:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
hostname: syncthing
|
|
#user: 1000:10002
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /opt/syncthing/config:/config
|
|
- /mnt/frigate/media:/mnt/media
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8384:8384" # WebUI
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 10002
|
|
UMASK: 0002
|
|
TZ: Africa/Johannesburg |