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

WSLのUbuntu上でDockerイメージをビルドしてAzure Container Registryにプッシュする

Posted at

船井総研デジタルの@fsd-takizawaです。
毎回、手順を忘れてしまうので、自身の備忘のために本記事を作成しています。

前提

Dockerファイルは作成済みとする。

手順サマリ

  1. Dockerイメージを作成
  2. コンテナのテスト起動
  3. イメージをACR向けに作成
  4. WSL(Ubuntu)でAzureにログイン
  5. Azure Container Registry (ACR) へログイン
  6. イメージをACRへプッシュ

手順詳細

Dockerイメージのビルド

docker buildx build -t <イメージ名[1]>:<タグ[1]>
# 例
# docker buildx build -t sample-image:v1

コンテナのテスト起動

docker runコマンドでテスト起動して稼働を確認する

イメージをACR向けに作成

docker tag <イメージ名[1]>:<タグ[1]> <ACRのログインサーバー>/<イメージ名[2]>:<tag[2]>
# 例
# docker tag sample-image:v1 acrname.azurecr.io/push-image:v2

ここでacrname.azurecr.ioacrnameはACRリソース名となる

Azureへログイン

az login --use-device-code

その後は表示されるメッセージに従う

ACRへのログイン

権限付与

Azure portal上で

  1. ACRのアクセスキー管理者ユーザー を有効化する
  2. IAMでユーザーに以下の権限を付与(付与権限は適切に行う)
    • AcrPull
    • AcrPush

ログイン

az acr login --name <ACRリソース名>

イメージのACRへのプッシュ

docker push <ACRのログインサーバー>/<イメージ名[2]>:<tag[2]>
# 例
# docker push acrname.azurecr.io/push-image:v2

以上です。

2
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
2
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?