Files
homelab/tasks/dozzle.yml
Matthew McKinnon 4226621884
All checks were successful
Deploy / Prepare Build (push) Successful in 27m24s
chore: update dozzle
2025-11-07 22:42:19 +10:00

25 lines
737 B
YAML

---
- name: Create/Update the dozzle container
docker_container:
name: dozzle
image: amir20/dozzle:v8.14.6
restart_policy: unless-stopped
networks:
- name: proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# env:
# DOZZLE_LEVEL: "trace"
# DOZZLE_REMOTE_AGENT: "omada-lxc.comprofix.xyz:7007"
labels:
traefik.enable: "true"
traefik.http.routers.dozzle.rule: "Host(`dozzle.comprofix.xyz`)"
traefik.http.routers.dozzle.entrypoints: "https"
traefik.http.routers.dozzle.tls: "true"
traefik.http.services.dozzle.loadbalancer.server.port: "8080"
traefik.http.services.dozzle.loadbalancer.server.scheme: "http"
pull: true
recreate: true