Files
homelab/tasks/dozzle.yml
Alex Frantz b8fbb21d2c
All checks were successful
Deploy Containers / Prepare (push) Successful in 1m24s
add tinyauth
2025-08-02 23:12:34 -04:00

22 lines
704 B
YAML

---
- name: Create Dozzle Docker Container
docker_container:
name: dozzle
image: amir20/dozzle:latest
restart_policy: unless-stopped
recreate: true
networks:
- name: homelab
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
env:
DOZZLE_ENABLE_ACTIONS: "{{ DOZZLE_ACTIONS }}"
DOZZLE_ENABLE_SHELL: "{{ DOZZLE_SHELL }}"
labels:
traefik.enable: "true"
traefik.http.routers.dz.rule: Host(`logs.fntz.net`)
traefik.http.routers.dz.entrypoints: webSecure
traefik.http.routers.dz.tls.certresolver: letsencrypt
traefik.http.services.dz.loadbalancer.server.port: "8080"
traefik.http.routers.dz.middlewares: tinyauth