Skip to content

Fast, Lightweight & Intuitive Container Management

A clean, self-hosted web UI to monitor status, view logs, and access container terminals directly from any device. Built for developers, homelabs, and teams.

Why Containery?

Lightweight Footprint

Built with efficiency in mind. Running on less than 170MB, with no heavy cloud dependencies, telemetry, or bloat.

Multi-Host Support

Manage multiple Docker environments securely. Connect via local UNIX sockets, remote TCP, or secure socket proxies.

In-Browser Terminal & Logs

Triage containers instantly. Stream real-time logs and open raw SSH terminal panels straight inside your browser.

Role-Based Access

Define granular user privileges. Ensure team members only have access to specific hosts, containers, or commands.

Get Started Instantly

Try it now

Run the automatic installer script instantly via curl:

curl -sSL https://raw.githubusercontent.com/danylo829/containery/master/install.sh | sh

Production Deploy

Or configure a persistent deployment using Docker Compose:

services:
  app:
    image: ghcr.io/danylo829/containery:latest
    container_name: containery
    restart: unless-stopped
    ports:
      - "5000:5000"
    volumes:
      - containery_data:/containery_data
      - containery_static:/containery/app/static/dist
      - /var/run/docker.sock:/var/run/docker.sock:ro

volumes:
  containery_data:
    name: containery_data
  containery_static:
    name: containery_static