Compare commits
2 Commits
a19e42543d
...
c90c74334e
| Author | SHA1 | Date | |
|---|---|---|---|
|
c90c74334e
|
|||
|
69aa6dbb33
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
.env
|
||||
config
|
||||
22
docker-compose.yaml
Normal file
22
docker-compose.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
syncthing:
|
||||
image: lscr.io/linuxserver/syncthing:latest
|
||||
container_name: syncthing
|
||||
restart: unless-stopped
|
||||
hostname: "${NODE_NAME}"
|
||||
ports:
|
||||
- "${WG_IP}:22000:22000/tcp"
|
||||
- "${WG_IP}:22000:22000/udp"
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ${SYNC_PATH}:/srv/sync
|
||||
stop_grace_period: 1m
|
||||
networks:
|
||||
- proxy_pc
|
||||
networks:
|
||||
proxy_pc:
|
||||
external: true
|
||||
Reference in New Issue
Block a user