Files
oam/docker/syncthing/docker-compose.yml
2023-12-29 22:53:46 +01:00

16 lines
313 B
YAML

---
version: "3"
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
hostname: planck
environment:
- PUID=1000
- PGID=1000
volumes:
- ./config:/var/syncthing/config
- ./data:/var/syncthing/data
network_mode: host
restart: unless-stopped