1
0

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 3 years have passed since last update.

Docker プライベートレジストリのWebUI調査 (5)

Last updated at Posted at 2019-05-14

Docker プライベートレジストリのWebUI調査 (1)
Docker プライベートレジストリのWebUI調査 (2)
Docker プライベートレジストリのWebUI調査 (3)
Docker プライベートレジストリのWebUI調査 (4)
Docker プライベートレジストリのWebUI調査 (6)

#parabuzzle/craneoperator

Dockerイメージ

OS
 Amazon Linux release 2 (Karoo)
Docker
 Docker version 18.06.1-ce, build e68fc7a215d7133c34aa18e3b72b4a21fd0c6136

■前提条件

docker network作成、プライベートレジストリのコンテナ作成、イメージ登録済

docker network create registry-ui-net

docker run -d \
  -p 5000:5000 \
  --net registry-ui-net \
  --name registry-srv \
  registry:latest

docker pull ubuntu:16.04
docker tag ubuntu:16.04 localhost:5000/ubuntu:16.04
docker push localhost:5000/ubuntu:16.04

コンテナ起動

docker run -d \
  -p 8085:80 \
  --net registry-ui-net \
  --name craneoperator \
  -e REGISTRY_HOST=registry-srv \
  -e REGISTRY_PORT=5000 \
  -e REGISTRY_PROTOCOL=http \
  -e SSL_VERIFY=false \
  -e ALLOW_REGISTRY_LOGIN=true \
  -e REGISTRY_ALLOW_DELETE=true \
  parabuzzle/craneoperator:latest

image1.PNG
Createdの日付は、元データはグリニッジ標準時間 (GMT)となっていますが、
ブラウザの表示では、ブラウザのタームゾーン設定?を見て表示を切り替えているような動きです。ただし「UTC」という表示はソースコードにべた書き
image2.PNG
image3.PNG

バグ?
tagをを削除して対象のリポジトリに1件もない状態
例えば、ubuntuというリポジトリに16.04のタグだけあった状態で
削除ボタンで16.04を削除すると404ページに飛ぶ。
また、リポジトリのボタン削除がない。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?