1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00
Files
dozzle/docs/guide/healthcheck.md
2024-08-13 08:15:03 -07:00

603 B

title
title
Healthcheck

Adding healthcheck

Dozzle has internal support for healthcheck using dozzle healthcheck command. It is not enabled by default as it adds extra CPU usage. To use healthcheck you need to configure it. Below is an example that checks the health of Dozzle every 3 seconds.

services:
  dozzle:
    image: amir20/dozzle:latest
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - 8080:8080
    healthcheck:
      test: ["CMD", "/dozzle", "healthcheck"]
      interval: 3s
      timeout: 30s
      retries: 5
      start_period: 30s