diff --git a/muer/.env.sample b/muer/.env.sample new file mode 100644 index 0000000..a1979a2 --- /dev/null +++ b/muer/.env.sample @@ -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 diff --git a/muer/compose.yml b/muer/compose.yml new file mode 100644 index 0000000..dccc4af --- /dev/null +++ b/muer/compose.yml @@ -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