What does docker container exit status 255 mean?

2019-04-10 13:55发布

The doc mentions

You can use a filter to locate containers that exited with status of 137 meaning a SIGKILL(9) killed them

I'm wondering does exit status 255 mean anything special?

标签: docker
1条回答
Lonely孤独者°
2楼-- · 2019-04-10 14:46

If you see that on a docker ps, showing a container with a status "Exited (255)", that means its main entrpypoint/command process stopped with that status.

And 255 simply means "there was an error", but does not tell you much beside that.

查看更多
登录 后发表回答