22 lines
469 B
YAML
22 lines
469 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
syncthing:
|
||
|
image: lscr.io/linuxserver/syncthing:latest
|
||
|
container_name: syncthing
|
||
|
hostname: syncthing #optional
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=America/New_York
|
||
|
volumes:
|
||
|
- /kubernetes-volumes/syncthing/config:/config
|
||
|
- /mnt/storage/syncthing:/data1
|
||
|
ports:
|
||
|
- 8384:8384
|
||
|
- 22000:22000/tcp
|
||
|
- 22000:22000/udp
|
||
|
- 21027:21027/udp
|
||
|
restart: unless-stopped
|
||
|
|