Added compose configurations for Syncthing.
This commit is contained in:
parent
52a26dd03e
commit
a8e617f43b
|
@ -6,6 +6,7 @@
|
||||||
!ttrss/
|
!ttrss/
|
||||||
!funkwhale/
|
!funkwhale/
|
||||||
!mediawiki/
|
!mediawiki/
|
||||||
|
!syncthing/
|
||||||
!**/docker-compose.yml
|
!**/docker-compose.yml
|
||||||
!**/Dockerfile
|
!**/Dockerfile
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
image: syncthing/syncthing
|
||||||
|
container_name: syncthing
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
ports:
|
||||||
|
- "8384:8384"
|
||||||
|
- "22000:22000"
|
||||||
|
- "21027:21027/udp"
|
||||||
|
volumes:
|
||||||
|
- .:/var/syncthing
|
Loading…
Reference in New Issue