あらかじめ、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