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 1 year has passed since last update.

【Docker】DockerHubにイメージを公開する

Last updated at Posted at 2022-08-07

リポジトリを生成する

以下の手順でDockerHubのリポジトリを生成します。

「Create Repository」をクリックします。
image220807_124432.png

任意のリポジトリ名を入力し「Create」をクリックします。
image220807_124711.png

ローカルイメージに名前をつける

以下のいずれかの方法でローカルイメージにさきほど作成したリポジトリの名前をつけます。

  • イメージをビルドする際に以下のコマンドを実行します。
ターミナル
$ docker build -t ユーザー名/リポジトリ名[:<tag>]
  • 既存のローカルイメージにあらためて名前をつける
ターミナル
$ docker tag 既存イメージID ユーザー名/リポジトリ名[:<tag>]
  • 変更をコミットする
ターミナル
$ docker commit コンテナID ユーザー名/リポジトリ名[:<tag>]

なお上記いずれも[:<tag>]を指定しない場合はlatestとなります。

pushする

最後に以下のコマンドを実行し、pushします。

ターミナル
$ docker push ユーザー名/リポジトリ名[:<tag>]
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?