Files
docker-stacks/stacks/syncthing/docker-compose.yml
knight 0d9b0302a2
Some checks failed
Deploy Stacks / deploy-prod (push) Has been skipped
Deploy Stacks / deploy-dev (push) Has been cancelled
Add stack-type=dev-only labels to dev stacks
Label stacks that should only run on ubuntu-dev:
- bookclub, dockge, filebrowser, meshmon, meshtastic-web
- mllogwatcher, network-mcp, obby, obsidian-tools
- syncthing, szurubooru

These will now be filtered by the updated workflow.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-22 15:05:36 -05:00

32 lines
819 B
YAML

services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
hostname: syncthing
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- ./config:/config
- ./data:/data
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
networks:
- web
labels:
- "com.ghost.tel/stack-type=dev-only"
- "traefik.enable=true"
- "traefik.http.routers.syncthing.entrypoints=https"
- "traefik.http.routers.syncthing.rule=Host(`syncthing.${DOMAIN}`)"
- "traefik.http.routers.syncthing.tls.certresolver=http"
- "traefik.http.services.syncthing.loadbalancer.server.port=8384"
networks:
web:
external: true