What are the possible states for a docker container?
Docker Remote API 1.24 defines one more state
- dead
No, there are other possible states. The Docker Remote API defines the following states:
created
A container that has been created (e.g. withdocker create
) but not startedrestarting
A container that is in the process of being restartedrunning
A currently running containerpaused
A container whose processes have been pausedexited
A container that ran and completed ("stopped" in other contexts, although acreated
container is technically also "stopped")dead
A container that the daemon tried and failed to stop (usually due to a busy device or resource used by the container) - Added on v1.22