Are there states other than "running", "paused" and "stopped" or are these the only states available?
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)
Docker Remote API 1.24 defines one more state
- dead
来源:https://stackoverflow.com/questions/32427684/what-are-the-possible-states-for-a-docker-container