Files
infra/cloud-pc/syncthing/docker-compose.yml
T
Dmitry dc3ff78d6d
Deploy cloud-pc / deploy (push) Failing after 15s
Deploy mini-pc / deploy (push) Failing after 4s
Deploy ru-vps / deploy (push) Failing after 5s
Refactor Docker Compose configurations and add deployment workflows for cloud-pc and mini-pc services
2026-05-27 15:41:15 +03:00

15 lines
367 B
YAML

services:
syncthing:
image: syncthing/syncthing:latest
container_name: syncthing
hostname: cloud-pc
environment:
PUID: "1000"
PGID: "1000"
STGUIADDRESS: 0.0.0.0:8384
volumes:
- /opt/configs/syncthing:/var/syncthing/config
- /opt/data/syncthing:/var/syncthing/data
network_mode: host
restart: unless-stopped