24
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

docker registry frontendインストール

Last updated at Posted at 2015-02-12

docker registry のリポジトリの中身をGUIで見れるツールです。
mac上のboot2dockerで入れてみました。

インストール

イメージをpullしてきてContainerとして起動させます。

# docker run -d \
-e ENV_DOCKER_REGISTRY_HOST=192.168.59.103 \
-e ENV_DOCKER_REGISTRY_PORT=5000 \
-p 8080:80 \
--name registry_frontend \
-h registry_frontend \
konradkleine/docker-registry-frontend

ENV_DOCKER_REGISTRY_HOST→docker_registryのホスト名orIP
ENV_DOCKER_REGISTRY_PORT→docker_registryのポート

本環境ではboot2docker上のcontainerでport5000で転送してるので、boot2dockerのipを指定してます。

$ boot2docker ip
192.168.59.103
$ docker ps
CONTAINER ID        IMAGE                                          COMMAND                CREATED             STATUS              PORTS                           NAMES
f204916b2099        stackbrew/registry:latest                      "docker-registry"      2 hours ago         Up 2 hours          0.0.0.0:5000->5000/tcp          registry            

画面イメージ

トップページ

スクリーンショット 2015-02-12 17.07.18.png

リポジトリ一覧

スクリーンショット 2015-02-12 17.07.28.png

リポジトリの中身

リポジトリごと消したり、特定のtagを消したりがGUIで出来ます。

スクリーンショット 2015-02-12 17.09.20.png

スクリーンショット 2015-02-12 17.11.07.png

24
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?