From b98e397bdc35b64fa7c97441ef41ea86be46ce35 Mon Sep 17 00:00:00 2001 From: Michel Date: Thu, 19 Oct 2023 19:07:35 +0200 Subject: [PATCH] New addition: Web Check --- webcheck/.env.sample | 5 +++++ webcheck/compose.yml | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 webcheck/.env.sample create mode 100644 webcheck/compose.yml 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