Browse and modify your Docker registry in a browser.
Go to file
2014-09-17 17:39:47 +02:00
app Simplified Create tag dialog. Moved "form me" logo to left 2014-09-17 15:41:45 +02:00
test Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
.bowerrc Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
.dockerignore Cleanup Docker image build process to consume less space. SSL might not be working right now. 2014-09-17 17:39:47 +02:00
.editorconfig Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
.gitattributes Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
.gitignore Ignore *.swp files 2014-09-15 16:16:24 +02:00
.jshintrc Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
.travis.yml Initial commit after: yo angular && npm install 2014-09-12 13:51:09 +02:00
bower.json Tag details, Tag creation (almost), Tag deletion, Image details 2014-09-16 16:25:27 +02:00
Dockerfile Cleanup Docker image build process to consume less space. SSL might not be working right now. 2014-09-17 17:39:47 +02:00
Gruntfile.js Respect HTML files in scripts/directives/ folders 2014-09-17 15:30:04 +02:00
LICENSE Added MIT license 2014-09-17 15:51:16 +02:00
nginx-site-ssl.conf Enable SSL serving 2014-09-17 16:59:58 +02:00
nginx-site.conf Enable SSL serving 2014-09-17 16:59:58 +02:00
package.json Dev workaround to query registry without CORS. Thanks to grunt proxy /v1 now redirects to path-to-your-registry host. 2014-09-15 09:56:18 +02:00
README.md Enable SSL serving 2014-09-17 16:59:58 +02:00

README

The docker-registry-frontend is a pure web-based solution for browsing and modifying any private Docker repository that you can reach via a URL.

This application is available in the form of a Docker image that you can run as a container by executing this command:

sudo docker run -d \
  -e DOCKER_REGISTRY_URL=http://path-to-your-registry \
  -p 8080:80 \
  konradkleine/docker-registry-frontend

This command starts the container and forwards the container's private port 80 to your host's port 8080. Make sure you specify the correct url to your registry.

When the application runs you can open your browser and navigate to http://localhost:8080.

If you want to run the application with SSL enabled, you can do the following:

sudo docker run -d \
  -e ENABLE_SSL=yes \
  -v /path/to/your/server.crt:/etc/nginx/ssl/server.crt:ro \
  -v /path/to/your/server.key:/etc/nginx/ssl/server.key:ro \
  -e DOCKER_REGISTRY_URL=http://path-to-your-registry \
  -p 8080:443 \
  konradkleine/docker-registry-frontend

Note that the application still serves the port 80 but it is simply not exposed ;). Instead we route the containers SSL port 443 to our previous port 8080.

When the application runs with SSL you can open your browser and navigate to https://localhost:8080.

If you like the application, I invite you to contribute and report bugs or feature request on the project's github page: https://github.com/kwk/docker-registry-frontend.

Thank you for your interest!

-- Konrad