push syncthing
This commit is contained in:
parent
4525d12671
commit
fef5f35a5e
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
**/.env
|
**/.env
|
||||||
**/*env
|
**/*env
|
||||||
|
**/config
|
||||||
**/data
|
**/data
|
||||||
**/images
|
**/images
|
||||||
**/files
|
**/files
|
||||||
|
|||||||
20
syncthing/docker-compose.yml
Normal file
20
syncthing/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
image: ${CONTAINER_IMAGE}
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
# hostname: ${MY_HOST} #optional
|
||||||
|
environment:
|
||||||
|
- PUID=${MY_UID}
|
||||||
|
- PGID=${MY_GID}
|
||||||
|
- TZ=${MY_TZ}
|
||||||
|
volumes:
|
||||||
|
- ${VOL_SYNC_CONFIG}
|
||||||
|
- ${VOL_DATA_AREAS}
|
||||||
|
ports:
|
||||||
|
- ${PORT1}
|
||||||
|
- ${PORT2}
|
||||||
|
- ${PORT3}
|
||||||
|
- ${PORT4}
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user