No description
| src | ||
| templates | ||
| .dockerignore | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| Dockerfile | ||
| readme.md | ||
Registry UI
This is a simple UI on top of the docker registry API.
Features
- list repositories
- list tags
- show image details
- search images
- delete image
- authentication
Technologies
- Rust
- Axum
- Askama
- Pico CSS
Running
cargo run --release
Packaging
docker buildx build -t registry-ui .
Configuration
Configuration is done via environment variables.
| Name | Description | Default |
|---|---|---|
| REGUI_HOST | Host to listen on | [::]:3030 |
| REGUI_REGISTRY_HOST | The host of the docker registry | localhost:5000 |
| REGUI_REGISTRY_TLS_DISABLED | Whether the registry uses TLS or not | false |