23 lines
755 B
YAML
23 lines
755 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
syncthing:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
container_name: syncthing
|
|
hostname: syncthing #optional
|
|
environment:
|
|
- PUID=1002
|
|
- PGID=100
|
|
- TZ=Europe/Vienna
|
|
volumes:
|
|
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/syncthing/config:/config
|
|
- /srv/dev-disk-by-uuid-84816528-0f98-4a92-91e2-fc43b5dc0bb4/Archive:/config/archive
|
|
- /srv/dev-disk-by-uuid-b7a4d72a-4b42-4599-9712-c044e8fe3213/Apoll/Homework:/config/homework
|
|
- /srv/dev-disk-by-uuid-fa1e36be-9ccc-4549-8734-fe6117b30317/croni/andre/andre/:/config/croni
|
|
ports:
|
|
- 8384:8384
|
|
- 22000:22000/tcp
|
|
- 22000:22000/udp
|
|
- 21027:21027/udp
|
|
restart: unless-stopped
|