Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Augusto Malucelli committed Mar 20, 2019
2 parents 455297b + f52e260 commit 6433d4f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
Simple Docker registry v2 viewer

Under development ;)

Running local
=============
1) pip3 install -r requirements.txt
2) Edit config.json with your informations
3) Create /etc/registry-ui
4) Copy config.json to /etc/registry-ui
5) python3 registryui.py

Running with local Docker
=========================
1) docker build -t registry-ui .
2) docker run -d -e title='titleOfthisApp' -e registryurl="http://registry.url.com" -p 8083:8083 registry-ui

To access: http://localhost:8083

Running from hub.docker.com image
==================================
1) docker run -d -e title='titleOfthisApp' -e registryurl="http://registry.url.com" -p 8083:8083 nopp/registry-ui:0.1

Screenshot v0.1
===============
Expand Down
4 changes: 1 addition & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ RUN apk update \

WORKDIR /registry-ui

RUN cat /etc/registry-ui/config.json

COPY run.sh /registry-ui
COPY docker/run.sh /registry-ui/run.sh

RUN chmod +x /registry-ui/run.sh

Expand Down

0 comments on commit 6433d4f

Please sign in to comment.