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

【覚書】起動しているコンテナのログを1 lineで全て確認する

Posted at

結論

$ docker ps -aq
c4d2a7431041
e129eaa57cd5

$ docker ps -aq | xargs -L 1 docker logs

使い所

CodeBuildでCIを回す機会があり、docker がUnhealthyになる状況があった。
その中で、mvn verifyを用いてcontainerのup/downを行っていたため、buildspec.ymlcodebuild-breakpointと記載してSSMを用いてコンテナ起動後の状態で止めることはできない。
そのため、mvn verifyでコンテナがコンテナがUnhealthyになった後にpost_buildフェーズで上記コマンドを実行することで、起動後のログを標準出力により取得した。

参考

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