The simplest and most complete UI for your private docker registry v2 and v3
Find a file
2016-07-23 22:51:47 +02:00
dist [gulp] Add gulpfile for build 2016-07-23 22:51:47 +02:00
src [gulp] Add gulpfile for build 2016-07-23 22:51:47 +02:00
static [static] Add docker for a unique registry ui 2016-06-20 00:16:16 +02:00
.gitignore Add list of registry repositories with riot 2016-04-10 12:53:55 +02:00
Dockerfile [gulp] Update Dockerfile for the new organization. Need static tag now 2016-07-23 22:51:47 +02:00
Dockerfile.static [static] Add docker for a unique registry ui 2016-06-20 00:16:16 +02:00
gulpfile.js [gulp] Add gulpfile for build 2016-07-23 22:51:47 +02:00
LICENSE Initial commit 2016-04-09 21:40:26 +02:00
package.json [gulp] Add gulpfile for build 2016-07-23 22:51:47 +02:00
README.md [Credentials] Add credentials feature 2016-06-12 14:12:32 +02:00
screenshot.png [Readme & Dockerfile] Add Readme and dockerfile for docker-hub 2016-06-06 21:32:33 +02:00

Docker Registry UI

Overview

This project aims to provide a user interface for your private docker registry v2. There is no default registry on this UI, you should add your own with the UI. You can manage more than one registry server. All registry will be stored in the local storage of your browser.

This web user interface use Riot the react-like user interface micro-library and Material Design Lite components.

screenshot

Features

  • List all your repositories/images.
  • List all tags for a repository/image
  • Sort the tag list
  • One interface for many registry
  • Use a secured docker registry

Getting Started

Basic

First you need node and npm in order to download dependencies.

git clone https://github.com/Joxit/docker-registry-ui.git
cd docker-registry-ui
npm install

Now you can open index.html with your browser or use a http-server

npm install -g http-server
http-server

Docker

The docker contains the source code and a node webserver in order to serve the docker-registry-ui.

Get the docker image

You can get the image in three ways

From sources with this command :

git clone https://github.com/Joxit/docker-registry-ui.git
docker build -t joxit/docker-registry-ui docker-registry-ui

Or build with the url :

docker build -t joxit/docker-registry-ui github.com/Joxit/docker-registry-ui

Or pull the image from docker hub :

docker pull joxit/docker-registry-ui

Run the docker

To run the docker and see the website on your 8080 port, try this :

docker run -d -p 8080:8080 joxit/docker-registry-ui

Using CORS

Your server should be configured to accept CORS.

If your docker registry does not need credentials, you will need to send this HEADER :

Access-Control-Allow-Origin: '*'

If your docker registry need credentials, you will need to send these HEADERS :

Access-Control-Allow-Origin: '<your docker-registry-ui url>'
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: ['HEAD', 'GET', 'OPTIONS'] # Optional