feat: add Dozzle service deployment and configuration in Ansible
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 13s
Nix Format Check / check-format (push) Successful in 57s
Python Lint Check / check-python (push) Failing after 10s

This commit is contained in:
2025-03-25 03:54:43 +01:00
parent fe50e3db15
commit 6b986a54a7
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
services:
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- {{ dozzle_data_dir }}:/data
ports:
- 8080:8080
environment:
- DOZZLE_NO_ANALYTICS=true
- DOZZLE_AUTH_PROVIDER=simple
restart: unless-stopped
networks:
- dozzle-net
- caddy_network
networks:
dozzle-net:
caddy_network:
external: true
name: caddy_default