infrastructure/infrastructure/syncthing/docker-compose.syncthing.yml
Bensuperpc 927522a5a8 Rework project structure
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2024-08-23 13:58:01 +02:00

26 lines
508 B
YAML

services:
# syncthing
syncthing:
image: linuxserver/syncthing:latest
container_name: syncthing
profiles:
- syncthing
depends_on:
- caddy
restart: on-failure:5
env_file:
- ./syncthing/env/syncthing.env
volumes:
- syncthing_config:/config
- syncthing_data:/data1
networks:
- infra-network
security_opt:
- no-new-privileges:true
volumes:
syncthing_config:
name: syncthing_config
syncthing_data:
name: syncthing_data