feat: add dozzle template

This commit is contained in:
Daniel Alves
2024-10-03 11:19:05 -03:00
parent 436a1d945f
commit b324303505
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# documentation: https://dozzle.dev/
# slogan: Dozzle is a simple and lightweight web UI for Docker logs.
# tags: dozzle,docker,logs,web-ui
# logo: svgs/dozzle.svg
# port: 8080
version: "3.8"
services:
dozzle:
image: amir20/dozzle:latest
container_name: "dozzle"
restart: unless-stopped
environment:
- SERVICE_FQDN_DOZZLE_8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock
healthcheck:
test: ["CMD", "/dozzle", "healthcheck"]
interval: 3s
timeout: 30s
retries: 5
start_period: 30s