diff --git a/webcheck/.env.sample b/webcheck/.env.sample new file mode 100644 index 0000000..60cee6f --- /dev/null +++ b/webcheck/.env.sample @@ -0,0 +1,5 @@ +# Uncomment and change the following variables if you want to use them. +#RESTART=unless-stopped +#WEBCHECK_CONTAINER_NAME=Firefox +#WEBCHECK_TAG=latest +#WEBCHECK_PORT=3000 diff --git a/webcheck/compose.yml b/webcheck/compose.yml new file mode 100644 index 0000000..5ae1223 --- /dev/null +++ b/webcheck/compose.yml @@ -0,0 +1,8 @@ +services: + # Web Check + webcheck: + container_name: ${WEBCHECK_CONTAINER_NAME:-WebCheck} + image: lissy93/web-check:${WEBCHECK_TAG:-latest} + restart: ${RESTART:-unless-stopped} + ports: + - ${WEBCHECK_PORT:-3000}:3000