1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/syncthing/docker-compose.yml

17 lines
421 B
YAML
Raw Normal View History

2022-08-30 09:13:11 +00:00
version: "3.8"
services:
syncthing:
image: syncthing/syncthing
ports:
- "8384:8384" # Web UI
- "22000:22000/tcp" # TCP file transfers
- "22000:22000/udp" # QUIC file transfers
- "21027:21027/udp" # Receive local discovery broadcasts
volumes:
- ./data:/var/syncthing
environment:
- PUID=1000
- PGID=1000
hostname: syncthing
restart: unless-stopped