Initaler Commit - Glados Docker YMLs

This commit is contained in:
2026-05-14 11:23:02 +02:00
commit 37d42cebe7
7 changed files with 278 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
services:
dozzle:
image: amir20/dozzle:latest
container_name: dozzle
restart: unless-stopped
environment:
- TZ=Europe/Berlin
- DOZZLE_AUTH_PROVIDER=simple
- DOZZLE_REMOTE_HOST=tcp://docker_proxy:2375
- DOZZLE_LEVEL=info
- TAILSIZE=300
ports:
- 8866:8080
volumes:
- /srv/docker/dozzle/data:/data
networks:
- docker_proxy_net
deploy:
resources:
limits:
cpus: '0.2'
memory: 256M
healthcheck:
test: ["CMD", "/dozzle", "healthcheck"]
interval: 30s
timeout: 30s
retries: 5
start_period: 30s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
docker_proxy_net:
external: true
name: docker_proxy_net