New addition: Web Check

This commit is contained in:
2023-10-19 19:07:35 +02:00
parent ea06b148d4
commit b98e397bdc
2 changed files with 13 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
#WEBCHECK_CONTAINER_NAME=Firefox
#WEBCHECK_TAG=latest
#WEBCHECK_PORT=3000
+8
View File
@@ -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