New addition: gonic

This commit is contained in:
2023-09-09 16:03:16 +02:00
parent 6607e4a5c1
commit 5151f2b907
2 changed files with 24 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=gonic
#TZ=Europe/Amsterdam
#GONIC_CONTAINER_NAME=gonic
#GONIC_TAG=latest
#GONIC_PORT=80
+16
View File
@@ -0,0 +1,16 @@
services:
# gonic
gonic:
container_name: ${GONIC_CONTAINER_NAME:-gonic}
image: sentriz/gonic:${GONIC_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:80/
environment:
TZ: Europe/Amsterdam
ports:
- ${GONIC_PORT:-80}:80
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-gonic}/${GONIC_CONTAINER_NAME:-gonic}/data:/data
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-gonic}/${GONIC_CONTAINER_NAME:-gonic}/music:/music
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-gonic}/${GONIC_CONTAINER_NAME:-gonic}/cache:/cache