syncthing initial deployment
This commit is contained in:
parent
b68f4b603d
commit
c7ef7df72b
1 changed files with 22 additions and 0 deletions
|
@ -12,3 +12,25 @@ services:
|
||||||
- BASE_URL=https://search.faulty.nl
|
- BASE_URL=https://search.faulty.nl
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
|
|
||||||
|
syncthing:
|
||||||
|
image: lscr.io/linuxserver/syncthing:latest
|
||||||
|
container_name: syncthing
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Amsterdam
|
||||||
|
- LETSENCRYPT_HOST=st.faulty.nl
|
||||||
|
- VIRTUAL_HOST=st.faulty.nl
|
||||||
|
- VIRTUAL_PATH=/syncthing
|
||||||
|
- VIRTUAL_DEST=/
|
||||||
|
- VIRTUAL_PORT=8384
|
||||||
|
volumes:
|
||||||
|
- /srv/syncthing/config:/config
|
||||||
|
- /srv/syncthing/data:/local
|
||||||
|
- /mnt:/remote
|
||||||
|
ports:
|
||||||
|
- 22000:22000/tcp
|
||||||
|
- 22000:22000/udp
|
||||||
|
- 21027:21027/udp
|
||||||
|
restart: unless-stopped
|
Reference in a new issue