add dozzle

This commit is contained in:
Viren070
2025-02-07 20:57:46 +00:00
parent b94951f2b9
commit e82396a37c
2 changed files with 29 additions and 1 deletions
+13
View File
@@ -73,6 +73,19 @@ AUTO_UPDATE_SCHEDULE=0 0 6 * * * # This will run the auto update at 6am every
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TZ=UTC
# FOR DOZZLE ONLY:
# This is to monitor the logs of the containers.
# You can access the logs by going to DOZZLE_HOSTNAME in your browser.
#
# To get the hashed password, run the following command in your terminal, replacing <username> with your desired username.
# htpasswd -nB <username>
#
# DOZZLE_USERNAME=
# DOZZLE_HASHED_PASSWORD=
# DOZZLE_HOSTNAME=
#
#
# FOR NZBHYDRA2 ONLY:
# NZBHYDRA2_HOSTNAME=
+16 -1
View File
@@ -514,7 +514,22 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# dozzle:
# image: amir20/dozzle:latest
# container_name: dozzle
# restart: unless-stopped
# expose:
# - 8080
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# labels:
# - "traefik.enable=true"
# - "traefik.http.routers.dozzle.rule=Host(`${DOZZLE_HOSTNAME}`)"
# - "traefik.http.routers.dozzle.entrypoints=websecure"
# - "traefik.http.routers.dozzle.tls.certresolver=myresolver"
# - "traefik.http.routers.dozzle.middlewares=auth"
# - "traefik.http.middlewares.auth.basicauth.users=${DOZZLE_USERNAME}:${DOZZLE_HASHED_PASSWORD}"
#
# # see @url:https://ae3.ch/adguard-home-docker-with-dns-over-https-and-traefik/
# # see @url:https://gist.github.com/diyfr/e115a82027fe45a9abf0ff4d578b111f
# adguard: