Initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Uncomment and change the following variables if you want to use them.
|
||||
#RESTART=unless-stopped
|
||||
#SYNOLOGY_VOLUME=volume1
|
||||
#STACK_NAME=heimdall
|
||||
#UID=1024
|
||||
#GID=101
|
||||
#TZ=Europe/Amsterdam
|
||||
#HEIMDALL_CONTAINER_NAME=Heimdall
|
||||
#HEIMDALL_TAG=latest
|
||||
#HEIMDALL_PORT=80
|
||||
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
# Heimdall
|
||||
heimdall:
|
||||
container_name: ${HEIMDALL_CONTAINER_NAME:-Heimdall}
|
||||
image: linuxserver/heimdall:${HEIMDALL_TAG:-latest}
|
||||
restart: ${RESTART:-unless-stopped}
|
||||
healthcheck:
|
||||
test: curl -f http://localhost:80/ || exit 1
|
||||
environment:
|
||||
PUID: ${UID:-1024}
|
||||
PGID: ${GID:-101}
|
||||
TZ: ${TZ:-Europe/Amsterdam}
|
||||
ports:
|
||||
- ${HEIMDALL_PORT:-80}:80
|
||||
volumes:
|
||||
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-heimdall}/${HEIMDALL_CONTAINER_NAME:-Heimdall}/config:/config
|
||||
Reference in New Issue
Block a user