0
1

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.

メモ Dockerfileでイメージを作り、プライベートリポジトリにpushするまで

Posted at

あらかじめ、Dockerfileを作ったディレクトリに移動しておく。


$ sudo docker build -t sample:0.0.1 .

実行完了後は、以下のコマンドでイメージを確認できる


$ sudo docker images

プライベートリポジトリにpushする名前にする。


$ sudo docker tag sample:0.0.1 (プライベートリポジトリのIP:ポート)/sample:0.0.1

プライベートリポジトリにpush


$ sudo docker push (プライベートリポジトリのIP:ポート)/sample:0.0.1

以下のコマンドで、レジストリの中にあるアプリ一覧が見れる


$ curl https://localhost:5000/v2/_catalog --insecur

以下のコマンドで、リポジトリの中のsampleアプリケーションのタグ情報が得られる。
自己証明を使っているため、insecurオプションを付与する。


$ curl https://localhost:5000/v2/sample/tags/list --insecur 
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?