2
docker ps --quiet | xargs docker inspect --format '{{ .Id }}: Health={{ .State.Health.Status }}'
c1ab47fdc94858275e9327ce56d039010cb9db1eb7865e0917f3d8a74862367e: Health=unhealthy
**Template parsing error: template: :1:27: executing "" at <.State.Health.Status>: map has no entry for key "Health"**
私はエラーmap has no entry for key "Health
がdocker inspect
コマンドの後に報告された理由を知りたいです。ステータスはコンテナのconfig.v2.json
ファイルにある必要がありますが、そのファイルにはunhealthy
がStatus
の下にないので、「Health = unhealthy」がどこから来たのかを知りたいと思います。ドッキングウィンドウのヘルス
ありがとうございました。