22 lines
516 B
YAML
22 lines
516 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
syncthing:
|
|
container_name: syncthing
|
|
image: syncthing/syncthing:1.20
|
|
stop_grace_period: 1m
|
|
hostname: tipi
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/var/syncthing
|
|
ports:
|
|
- ${APP_PORT}:8384
|
|
- 22000:22000/tcp # TCP file transfers
|
|
- 22000:22000/udp # QUIC file transfers
|
|
- 21027:21027/udp # Receive local discovery broadcasts
|
|
restart: unless-stopped
|
|
networks:
|
|
- tipi_main_network
|