Files
docker-compose-files/dozzle/compose.yaml
T
2025-12-29 12:59:01 +01:00

24 lines
530 B
YAML
Executable File

services:
dozzle:
container_name: dozzle
restart: unless-stopped
deploy:
resources:
limits:
memory: 256M
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
environment:
- DOZZLE_REMOTE_AGENT=192.168.178.215:9007,192.168.178.200:7007
ports:
- 9889:8080
healthcheck:
test: ["CMD", "/dozzle", "healthcheck"]
interval: 3s
timeout: 30s
retries: 5
start_period: 30s
networks: {}