Are there states other than "running", "paused" and "stopped" or are these the only states available?
Asked
Active
Viewed 2.3k times
25
-
1check this link: https://medium.com/@nagarwal/lifecycle-of-docker-container-d2da9f85959 – rsjethani Apr 11 '18 at 18:24
2 Answers
47
No, there are other possible states. The Docker Remote API defines the following states:
createdA container that has been created (e.g. withdocker create) but not startedrestartingA container that is in the process of being restartedrunningA currently running containerpausedA container whose processes have been pausedexitedA container that ran and completed ("stopped" in other contexts, although acreatedcontainer is technically also "stopped")deadA 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
Diogo Almiro
- 333
- 3
- 14
Adrian Mouat
- 41,838
- 15
- 106
- 101