push syncthing

This commit is contained in:
dzamo (almalinux9-docker) 2024-11-25 21:54:09 +01:00
parent 4525d12671
commit fef5f35a5e
2 changed files with 21 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
**/.env **/.env
**/*env **/*env
**/config
**/data **/data
**/images **/images
**/files **/files

View 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