Container State
ContainerState stores container's running state. It's part of ContainerJSONBase and will be returned by the \"inspect\" command.
Parameters
String representation of the container state. Can be one of \"created\", \"running\", \"paused\", \"restarting\", \"removing\", \"exited\", or \"dead\".
Whether this container is running. Note that a running container can be paused. The Running and Paused booleans are not mutually exclusive: When pausing a container (on Linux), the freezer cgroup is used to suspend all processes in the container. Freezing the process requires the process to be running. As a result, paused containers are both Running and Paused. Use the Status field instead to determine if a container's state is \"running\".
Whether this container is paused.
Whether this container is restarting.
Whether a process within this container has been killed because it ran out of memory since the container was last started.
The process ID of this container
The last exit code of this container
The time when this container was last started.
The time when this container last exited.