Modern, lightweight web interface for managing your Docker Registry
Browse, search, and manage Docker images and tags with an intuitive interface
Toggle between read-only and read-write modes for safe registry operations
Delete multiple images based on patterns, age, and retention policies
Built-in Trivy integration for scanning images and viewing CVE details
Connect and manage multiple Docker registries from a single interface
View storage usage, image statistics, and layer information
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
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
Installation and basic setup guide
Configure registries and settings
Explore all available features
Docker Registry API integration
Vulnerability scanning with Trivy
Full feature testing with multi-registry
Contributing and development setup