Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
jc21 committed May 17, 2018
1 parent c9d8bbd commit 00fb88c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@

# Docker Registry UI

![Version](https://img.shields.io/badge/version-1.0.0-green.svg)
![Version](https://img.shields.io/badge/version-2.0.0-green.svg)
![Stars](https://img.shields.io/docker/stars/jc21/registry-ui.svg)
![Pulls](https://img.shields.io/docker/pulls/jc21/registry-ui.svg)

![Build Status](http://bamboo.jc21.com/plugins/servlet/wittified/build-status/AB-DRUI)

Ever wanted a visual website to show you the contents of your Docker Registry? Look no further. Now you can list your Images, Tags and info in style.
Have you ever wanted a visual website to show you the contents of your Docker Registry? Look no further. Now you can list your Images, Tags and info in style.

This project comes as a [pre-built docker image](https://hub.docker.com/r/jc21/registry-ui/) capable of connecting to another registry.

Note: This project only works with Docker Registry v2.


## Getting started

### Using [Rancher](https://rancher.com)?
Expand Down Expand Up @@ -62,7 +61,7 @@ as an example. Note that there are some tweaks in there that you will need to be
- **`REGISTRY_HOST`** - *Required:* The registry hostname and optional port to connect to for API calls
- **`REGISTRY_SSL`** - *Optional:* Specify `true` for this if the registry is accessed via HTTPS
- **`REGISTRY_DOMAIN`** - *Optional:* This is the registry domain to display in the UI for example push/pull code
- **`REGISTRY_STORAGE_DELETE_ENABLED`** - *Optional:* Specify `true` to enable deletion features, but see below first!
- **`REGISTRY_STORAGE_DELETE_ENABLED`** - *Optional:* Specify `true` or `1` to enable deletion features, but see below first!


## Deletion Support
Expand All @@ -80,7 +79,8 @@ docker run -d -p 5000:5000 -e REGISTRY_STORAGE_DELETE_ENABLED=true --name my-reg

#### Enabling Deletions in the UI

Same as the Registry, just add the **`REGISTRY_STORAGE_DELETE_ENABLED=true`** environment variable to the `registry-ui` container.
Same as the Registry, just add the **`REGISTRY_STORAGE_DELETE_ENABLED=true`** environment variable to the `registry-ui` container. Note that `true` is the only
acceptable value for this environment variable.


#### Cleaning up the Registry
Expand All @@ -104,12 +104,9 @@ And if you wanted to make a cron job that runs every 30 mins:
[![Image](https://public.jc21.com/docker-registry-ui/screenshots/small/drui-2.jpg "Image")](https://public.jc21.com/docker-registry-ui/screenshots/drui-2.jpg)
[![Pulling](https://public.jc21.com/docker-registry-ui/screenshots/small/drui-3.jpg "Pulling")](https://public.jc21.com/docker-registry-ui/screenshots/drui-3.jpg)
[![Pushing](https://public.jc21.com/docker-registry-ui/screenshots/small/drui-4.jpg "Pushing")](https://public.jc21.com/docker-registry-ui/screenshots/drui-4.jpg)
[![Deleting](https://public.jc21.com/docker-registry-ui/screenshots/small/drui-5.jpg "Deleting")](https://public.jc21.com/docker-registry-ui/screenshots/drui-5.jpg)


## TODO

- Add pagination to Repositories, currently only 300 images will be fetched
- Add support for registry authentication mechanisms


10 changes: 3 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"name": "hyper",
"version": "1.0.0",
"description": "example",
"name": "docker-registry-ui",
"version": "2.0.0",
"description": "A nice web interface for managing your Docker Registry images",
"main": "src/backend/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"ajv": "^5.2.2",
"batchflow": "^0.4.0",
Expand Down

0 comments on commit 00fb88c

Please sign in to comment.