Dockge is a user-friendly graphical interface for managing Docker Compose projects. It enables users to view, edit and control their container stacks without needing the command line. Each project is displayed in a dashboard where you can monitor logs, restart containers and check health status. It supports multiple projects and configurations, making it great for complex environments. Ideal for users who prefer visual interaction over CLI-based Docker management.

Setup

docker-compose.yaml

version: "3.8"

volumes:
  data:
  stacks:

services:
  dockge:
    image: louislam/dockge
    container_name: dockge
    restart: unless-stopped
    ports:
      - 5001:5001
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - data:/app/data
      - stacks:/opt/stacks
    environment:
      - DOCKGE_STACKS_DIR=/opt/stacks

Sources