mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-03-15 10:09:54 +00:00
add dockcheck-web
This commit is contained in:
parent
4995a96567
commit
adc149015d
@ -87,6 +87,7 @@ docker compose up
|
|||||||
- [WatchYourLAN](examples/watchyourlan) - Lightweight network IP scanner with web GUI.
|
- [WatchYourLAN](examples/watchyourlan) - Lightweight network IP scanner with web GUI.
|
||||||
- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting.
|
- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting.
|
||||||
- [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
|
- [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
|
||||||
|
- [dockcheck-web](examples/dockcheck-web) - A webpage showing available image updates for your running containers.
|
||||||
|
|
||||||
### Recipe Managers
|
### Recipe Managers
|
||||||
- [Tandoor](examples/tandoor) - Django application to manage, tag and search recipes using either built-in models or external storage providers hosting PDFs, Images or other files.
|
- [Tandoor](examples/tandoor) - Django application to manage, tag and search recipes using either built-in models or external storage providers hosting PDFs, Images or other files.
|
||||||
|
3
examples/dockcheck-web/README.md
Normal file
3
examples/dockcheck-web/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# References
|
||||||
|
|
||||||
|
- https://github.com/Palleri/dockcheck-web
|
26
examples/dockcheck-web/docker-compose.yml
Normal file
26
examples/dockcheck-web/docker-compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user