Docker Registry 2使ってみた
3265 ワード
参考
dockerの利点
- jenkins で自動ビルド
- ベンダーロックインの回避(クラウドベンダーの独自機能に縛られない)
docker registryの起動
- latestは0.9.1の様子なので最新バージョンを指定。
5000番で待ち受け
docker run -d -p 5000:5000 \
-v /data/registry:/tmp/registry \
registry:2
- コンテナ側: /tmp/registry/
- ホスト側: /data/registry/
pushの準備
何かイメージを用意。実際は自前でBuildしたものを使うでしょう。
docker pull centos:6
tagをつける
docker tag centos:6 localhost:5000/centos`date -I`
push実施
localhostの5000番にpush
docker push localhost:5000/centos`date -I`
イメージ一覧
$ curl http://localhost:5000/v2/_catalog
{"repositories":["centos2015-09-03"]}
取得方法ほか
curl -s "http://localhost:5000/v1/search"
curl -s "http://localhost:5000/v2/_catalog"
curl -s "http://localhost:5000/v2/ubuntu/tags/list"
docker-composeでimages指定
docker-compose.yml
app:
image: localhost:5000/centos2015-09-03
$ curl http://localhost:5000/v2/_catalog
{"repositories":["centos2015-09-03"]}
取得方法ほか
curl -s "http://localhost:5000/v1/search"
curl -s "http://localhost:5000/v2/_catalog"
curl -s "http://localhost:5000/v2/ubuntu/tags/list"
docker-compose.yml
app:
image: localhost:5000/centos2015-09-03
Author And Source
この問題について(Docker Registry 2使ってみた), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/2ca5b1eddd455e333016著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .