23 lines
618 B
YAML
23 lines
618 B
YAML
services:
|
|
syncthing:
|
|
image: syncthing/syncthing
|
|
container_name: syncthing
|
|
hostname: kolpacksoftware
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- /srv/syncthing-data:/var/syncthing
|
|
- /srv/obsidian-config/Obsidian Vault:/obsidian
|
|
ports:
|
|
- "8384:8384" # Web UI (configure in nginx-proxy-manager)
|
|
- "22000:22000/tcp" # Syncthing protocol (TCP)
|
|
- "22000:22000/udp" # Syncthing protocol (UDP)
|
|
- "21027:21027/udp" # Local discovery
|
|
networks:
|
|
- npm-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true |