docker-status

module
v0.0.0-...-887302b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2025 License: MIT

README

Docker Status

Docker Status is a simple application that checks the health of Docker containers and provides a JSON endpoint to retrieve their status.

An image of two terminals, one with the client displaying the statuses of containers running on the server.

Getting Started

Start the server via docker or docker-compose,

docker run \
  --rm \
  --name docker-status \
  -p 9090:9090 \
  -v ${XDG_RUNTIME_DIR:-/var/run}/docker.sock:/var/run/docker.sock:ro \
  lahmanja/docker-status:latest
services:
  docker-status:
    image: lahmanja/docker-status:latest
    container_name: docker-status
    restart: unless-stopped
    ports:
      - 9090:9090
    volumes:
      - ${XDG_RUNTIME_DIR:-/var/run}/docker.sock:/var/run/docker.sock:ro

Then hit the endpoint,

curl http://localhost:9090

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL