環境
- Windows 10 Pro 20H2 19042.685
- Windows Terminal 1.4.3243.0
- PowerShell 7.1.0
- Docker version 20.10.0, build 7287ab3
- AWS CLI 2.1.10
- AWS Tools for PowerShell 4.1.5.0
- Amazon Elastic Container Registry (Amazon ECR)
Amazon ECRの概要
料金
- ストレージ
- パブリックリポジトリ用に50GBの月間無料ストレージ
- プライベートリポジトリまたはパブリックリポジトリに保存されたデータのストレージは、GB/月あたり0.10USD
- データ転送
- 毎月500GBのデータをパブリックリポジトリから匿名で (AWSアカウントを使用せずに) インターネットに無料で転送
- AWSアカウントにサインアップするか、既存のAWSアカウントでECRに認証すると、毎月5TBのデータをパブリックリポジトリから無料でインターネットに転送
- パブリックリポジトリから任意のAWSリージョンのAWSコンピューティングリソースへデータを転送すると、無制限の帯域幅を無料で利用
参考情報
Windowsのコンテナイメージを作成する
1. Dockerファイルを作成する。コンテナイメージの.NET Frameworkのバージョンを出力するプログラムをビルドして実行する。
# >> # >> Build Application # >> # >> .Net Framework 3.5 SDK on Windows Server Core 2019 # # .NET Framework SDK # https://hub.docker.com/_/microsoft-dotnet-framework-sdk/ # # DotNetVersions project can not build by .NET Framework 4.8. # Require .NET Framework 3.5. FROM mcr.microsoft.com/dotnet/framework/sdk:3.5-20201110-windowsservercore-ltsc2019 AS Build # >> Check PowerShell Version # # How to Check your PowerShell Version (All the Ways!) # https://adamtheautomator.com/check-powershell-version/ # # CMD [ "PowerShell", "(Get-Host).Version" ] # Major Minor Build Revision # ----- ----- ----- -------- # 5 1 17763 1490 # >> Download Git for Windows # # Git - Downloading Package # https://git-scm.com/download/win # Click here to download manually # https://github.com/git-for-windows/git/releases/download/v2.29.2.windows.3/Git-2.29.2.3-64-bit.exe # # PowerShell Invoke-WebRequest # https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-5.1 RUN PowerShell Invoke-WebRequest -URI https://github.com/git-for-windows/git/releases/download/v2.29.2.windows.3/Git-2.29.2.3-64-bit.exe -OutFile git.exe # >> Install Git for Windows # # Silent or Unattended Installation # https://github.com/git-for-windows/git/wiki/Silent-or-Unattended-Installation # # CMD [ "C:\\Program Files\\Git\\bin\\git.exe", "--version" ] # git version 2.29.2.windows.3 RUN ./git.exe /VERYSILENT /NORESTART /NOCANCEL /SP- /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS /COMPONENTS="icons,ext\reg\shellhere,assoc,assoc_sh" # >> Get Project from GitHub # # How to: Determine which .NET Framework versions are installed # https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed # DotNetVersions # https://github.com/jmalarcon/DotNetVersions WORKDIR /DotNetVersions RUN [ "C:\\Program Files\\Git\\bin\\git.exe", "init" ] RUN [ "C:\\Program Files\\Git\\bin\\git.exe", "pull", "https://github.com/jmalarcon/DotNetVersions" ] # >> Build Project # # Build and run the sample locally with MSBuild # https://github.com/microsoft/dotnet-framework-docker/blob/master/samples/dotnetapp/README.md#build-and-run-the-sample-locally-with-msbuild RUN msbuild /t:restore RUN msbuild /p:Configuration=Release # >> Run Application # # DotNetVersions # https://github.com/jmalarcon/DotNetVersions # This is useful for informational purposes, # but if for any reason you need to run it in a batch file # and get just the versions without stopping execution, # you can use the /b, -b or --b switch : # # CMD [ "C:\\DotNetVersions\\bin\\Release\\DotNetVersions.exe", "-b" ] # 2.0.50727.4927 Service Pack 2 # 3.0.30729.4926 Service Pack 2 # 3.5.30729.4926 Service Pack 1 # 4.0.0.0 # 4.8.03761 # >> # >> Build Release Image # >> # # Use multi-stage builds # https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#use-multi-stage-builds # # CMD [ "C:\\app\\DotNetVersions.exe", "-b" ] # 4.0.0.0 # 4.7.03190 FROM mcr.microsoft.com/windows/servercore:ltsc2019 WORKDIR /app COPY --from=Build /DotNetVersions/bin/Release . CMD [ "C:\\app\\DotNetVersions.exe", "-b" ]
2. Dockerイメージをビルドする。
PS > docker build --tag wsc:release .
3. Dockerコンテナを実行する。
PS > docker run --name wsc-dotnet-version wsc:release 4.0.0.0 4.7.03190
AWS CLIをインストールする
Windows用のAWS CLIをMSIを使ってインストールする。
PS > aws --version aws-cli/2.1.10 Python/3.7.9 Windows/10 exe/AMD64 prompt/off
参考情報
AWS Tools for Windows PowerShellをインストールする
インストールできるパッケージには3つの種類がある。
- AWS.Tools (小さな個別のモジュール)
- AWSPowerShell.NetCore (大きな1つのモジュール)
- AWSPowerShell (大きな1つのモジュール)
PowerShellセッションでAWS.Toolsをインストールする。AWS.Toolsは必要な個別のモジュールをPSGallery(https://www.powershellgallery.com/)からインストールする。
PS > Install-Module -Name AWS.Tools.Installer Untrusted repository You are installing the modules from an untrusted repository. If you trust this repository, change its InstallationPolicy value by running the Set-PSRepository cmdlet. Are you sure you want to install the modules from 'PSGallery'? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): y PS > Install-AWSToolsModule AWS.Tools.EC2,AWS.Tools.S3,AWS.Tools.ECR -CleanUp Confirm Are you sure you want to perform this action? Performing the operation "Install-AWSToolsModule" on target "AWS Tools version 4.1.5.0". [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): y Installing module AWS.Tools.EC2 version 4.1.5.0 Installing module AWS.Tools.S3 version 4.1.5.0 Installing module AWS.Tools.ECR version 4.1.5.0 PS > Get-AWSPowerShellVersion AWS Tools for PowerShell Version 4.1.5.0 Copyright 2012-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Amazon Web Services SDK for .NET Core Runtime Version 3.5.1.37 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Release notes: https://github.com/aws/aws-tools-for-powershell/blob/master/CHANGELOG.md This software includes third party software subject to the following copyrights: - Logging from log4net, Apache License [http://logging.apache.org/log4net/license.html]
参考情報
AWSの認証情報を設定する
1. Access key IDとSecret access keyを取得する。
IAMコンソール > 左側メニューのAccess management > Users > 右側リストのUser name > ユーザー名リンク > Security credentialsタブ > Access keys > Create access keyボタン
表示されたダイアログでDownload .csv fileボタンを押してファイルをダウンロードする。
2. Access key IDとSecret access keyを設定する。
PS > Set-AWSCredential -AccessKey (Access key ID) -SecretKey (Secret access key) -StoreAs default
3. リージョンを設定する。
PS > Set-DefaultAWSRegion -Region (リージョン名)
参考情報
- To get your access key ID and secret access key
- Managing Profiles > Add a New profile
- Specifying AWS Regions
AWSマネジメントコンソールを使ってAmazon ECRにWindowsのコンテナイメージを登録する
1. To create an image repository
リポジトリはAmazon ECR内でDockerイメージを保存する場所のこと。Amazon ECRにイメージをpush or pullする際はリポジトリとレジストリの場所を指定する。
1-1. Amazon ECRコンソールを開く。左下の言語をEnglish(US)に変更する。
1-2. 右上にあるCreate a repository > Get Startedボタンを押す。

1-3. リポジトリ名を入力してリポジトリを作成する。



1-4. リポジトリが作成される。

2. Build, tag, and push a Docker image
2-1. リポジトリの画面で右上のView push commandsボタンを押す。必要なコマンドが表示される。


2-2. 認証トークンを取得してDockerクライアントをAmazon ECRに接続する。
PS > (Get-ECRLoginCommand).Password | docker login --username AWS --password-stdin (自分のアカウント).amazonaws.com Login Succeeded
2-3. Dockerイメージをビルドする。
PS > docker build -t windows .
2-4. ローカルのDockerイメージをタグ付けしてAmazon ECRにpushできるようにする。
PS > docker tag windows:latest (自分のアカウント).amazonaws.com/windows:latest
2-5. ローカルのDockerイメージをAmazon ECRにpushする。
PS > docker push (自分のアカウント).amazonaws.com/windows:latest
イメージのサイズは0.02MBになっている。

参考情報