7
6

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 5 years have passed since last update.

Fargateの「コマンドの上書き」でのオプションの設定方法

Last updated at Posted at 2018-10-02

AWSのコンソール画面でFargateのタスクを実行する際に
「コマンドの上書き」でオプションを付与したかったが、少しハマったのでメモ。

やりたいこと

下記は実行したいコンテナのDockerfileの一部


ENTRYPOINT ["python", "index.py"]
CMD ["--date", ""]

Fargateでのタスク実行時に


--date 20181002

という感じのオプションを付与したい。

「コマンドの上書き」の記載方法

結論から言うと
タスク実行の設定画面の「コマンドの上書き」欄に

--date,20181002

と記載するだけであった。

スクリーンショット 2018-10-02 14.11.41.png

カンマの後ろに余計な空白があるとその空白もオプションの一部として認識されてしまったので注意。

7
6
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
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?