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