MasterpieceDockerCompose/syncthing/docker-compose.yml

17 lines
574 B
YAML
Raw Normal View History

2021-05-17 11:55:03 +02:00
version: "3"
services:
syncthing:
container_name: linuxserver-syncthing
image: ghcr.io/linuxserver/syncthing
restart: unless-stopped
ports:
- ${SYNCTHING_WEBUI_PORT:-8384}:8384
2021-05-17 16:54:47 +02:00
- ${SYNCTHING_LST_TCP:-22000}/tcp:22000/tcp
- ${SYNCTHING_LST_UDP:-22000}/udp:22000/udp
- ${SYNCTHING_PORT_DSC:-21027}/udp:21027/udp
2021-05-17 11:55:03 +02:00
env_file: .env
sysctls:
- net.core.rmem_max=2097152
volumes:
- ${SYNCTHING_CONFIG:-/home/docker/syncthing/config}:/config
- ${SYNCTHING_DATA:-/home/docker/syncthing/data}:/data