add dockcheck-web

This commit is contained in:
L4RM4ND
2023-02-25 23:12:27 +01:00
parent 4995a96567
commit adc149015d
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# References
- https://github.com/Palleri/dockcheck-web

View File

@@ -0,0 +1,26 @@
version: '3.2'
services:
dockcheck-web:
container_name: dockcheck-web
hostname: dockcheck-web
image: palleri/dockcheck-web:latest
restart: unless-stopped
ports:
- '8765:80'
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dockcheck-web/data:/var/www/html
- /var/run/docker.sock:/var/run/docker.sock:ro
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.http.routers.dockcheck-web.rule=Host(`dockcheck.example.com`)
# - traefik.http.services.dockcheck-web.loadbalancer.server.port=80
# - traefik.docker.network=proxy
# # Part for optional traefik middlewares
# - traefik.http.routers.dockcheck-web.middlewares=local-ipwhitelist@file,basic-auth@file
#networks:
# proxy:
# external: true