Initial commit
This commit is contained in:
16
syncthing/docker-compose.yml
Normal file
16
syncthing/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3.9'
|
||||
services:
|
||||
syncthing:
|
||||
image: syncthing/syncthing:latest
|
||||
container_name: syncthing
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- STGUIADDRESS=0.0.0.0:8384
|
||||
volumes:
|
||||
- "./config:/var/syncthing/config"
|
||||
- "./sync:/var/syncthing/sync"
|
||||
ports:
|
||||
- "8384:8384" #WebUI
|
||||
- "22000:22000" #Sync
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user