New Addition: Muer

This commit is contained in:
2023-09-09 16:42:20 +02:00
parent 55359d8254
commit 639780c6c8
2 changed files with 15 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#MUER_CONTAINER_NAME=Muer
#MUER_TAG=latest
#MUER_PORT=3000
+10
View File
@@ -0,0 +1,10 @@
services:
# Muer
muer:
container_name: ${MUER_CONTAINER_NAME:-Muer}
image: muerorg/muer:${MUER_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: curl -f http://localhost:3000/ || exit 1
ports:
- ${MUER_PORT:-3000}:3000