Docker Registry UI

Modern, lightweight web interface for managing your Docker Registry

Features

๐Ÿ“ฆ

Repository Management

Browse, search, and manage Docker images and tags with an intuitive interface

๐Ÿ”’

Read/Write Modes

Toggle between read-only and read-write modes for safe registry operations

๐Ÿ—‘๏ธ

Bulk Operations

Delete multiple images based on patterns, age, and retention policies

๐Ÿ›ก๏ธ

Vulnerability Scanning

Built-in Trivy integration for scanning images and viewing CVE details

๐Ÿ”—

Multi-Registry Support

Connect and manage multiple Docker registries from a single interface

๐Ÿ“Š

Analytics & Insights

View storage usage, image statistics, and layer information

Quick Start

Docker Run

docker run -d \
  -p 5000:5000 \
  -e CONFIG_FILE=/app/data/registries.config.json \
  -e READ_ONLY=false \
  -v ./data:/app/data \
  ghcr.io/vibhuvioio/docker-registry-ui:latest

Docker Compose

version: '3.8'
services:
  registry-ui:
    image: ghcr.io/vibhuvioio/docker-registry-ui:latest
    ports:
      - "5000:5000"
    environment:
      - CONFIG_FILE=/app/data/registries.config.json
      - READ_ONLY=false
    volumes:
      - ./data:/app/data

Access the UI at http://localhost:5000

๐Ÿ“ฆ Available Versions: View all versions on GitHub Container Registry

Documentation