2
0

More than 3 years have passed since last update.

fishを使ってAWS ECRのリポジトリにImageをPushする方法

Posted at

まず初めにレジストリに対する Docker クライアントの認証に使用するログインコマンドをAWS CLIを使って取得する必要があります。

AWSのサンプルコマンドは下記のようになっています。

$(aws ecr get-login --no-include-email --region ap-northeast-1)

しかしfishの場合は

fish: Command substitutions not allowed

と怒られてしまいますので、

aws ecr get-login --no-include-email --region ap-northeast-1 | fish

としてあげれば、うまくいきます。

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