Navigate:
All Reposdockge
~$DOCKGE0.3%

Dockge: Docker Compose stack manager with web UI

Self-hosted Docker Compose manager with real-time terminal streaming.

LIVE RANKINGS • 06:51 AM • STEADY
TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50TOP 50
OVERALL
#41
13
CLOUD & DEVOPS
#2
30 DAY RANKING TREND
ovr#41
·Cloud#2
STARS
21.4K
FORKS
666
DOWNLOADS
7D STARS
+60
7D FORKS
-1
See Repo:
Share:

Learn more about dockge

Dockge is a web-based management tool for Docker Compose stacks built with TypeScript and ES modules. It communicates with the Docker daemon to manage compose files stored in a file-based directory structure, using WebSocket connections for real-time updates and terminal streaming. The application includes an interactive YAML editor, web terminal, and support for multiple Docker hosts through agent connections. It runs as a containerized service and supports Docker 20+, Podman, and various Linux distributions on armv7, arm64, and amd64 architectures.


1

File-Based Stack Storage

Compose files persist as standard YAML on the filesystem, not in a database. Stacks remain fully accessible through native docker compose CLI commands, enabling integration with existing workflows and automation tools outside the web interface.

2

Real-Time WebSocket Streaming

Terminal output and progress indicators stream live through WebSocket connections during Docker operations. Engineers see immediate feedback from pull, up, and down commands without polling or page refreshes.

3

Multi-Host Agent Architecture

Manages Docker stacks across multiple hosts from a single dashboard. Agent processes on remote machines report status and accept commands, enabling centralized multi-server management.


import { io } from 'socket.io-client';

const socket = io('http://localhost:5001');

socket.on('connect', () => {
  console.log('Connected to Dockge');
  socket.emit('stackList', {}, (response) => {
    console.log('Available stacks:', response);
  });
});


v1.5.0

Console feature now disabled by default for security; set DOCKGE_ENABLE_CONSOLE=true to re-enable if needed.

  • Set DOCKGE_ENABLE_CONSOLE=true in environment to restore console access after upgrade.
  • Docker client updated to 28.0.4 and Compose to 2.34.0; YAML comments now preserved when reordering.
v1.4.2

Fixes critical startup failure after restart and corrects login placeholder rendering.

  • Upgrade immediately if experiencing post-restart failures; issue #380 resolves Dockge failing to start.
  • Login placeholder now renders correctly; no action required unless customizing login UI.
v1.4.0

Adds multi-instance support: designate one Dockge as primary, then connect other instances as agents via 'New Agent' button to manage all stacks from a single UI.

  • Choose one Dockge instance as primary and log in to connect additional instances through the homepage 'New Agent' option.
  • The primary instance proxies requests to connected agents, so your browser only needs access to the primary Dockge.


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers