Files
homelab/tasks/dozzle.yml
Matthew McKinnon 6208f61652
All checks were successful
Deploy / Prepare Build (push) Successful in 24m50s
chore: update container image
2025-10-15 20:05:45 +10:00

25 lines
740 B
YAML

---
- name: Create/Update the dozzle container
docker_container:
name: dozzle
image: amir20/dozzle:v8.14.4
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(`devdozzle.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