Enumeration ContainerState

Container state is relatively self-explanatory. It describes what the container is currently doing.

Enumeration Members

EXITED: "exited"

The container exited (e.g. with a zero exit code)

FAILED: "failed"

The container's entrypoint failed (e.g. exited with a non-zero exit code)

PENDING: "pending"

The container is pending creation

RUNNING: "running"

The container is running

STOPPED: "stopped"

The container is stopped

TERMINATING: "terminating"

The container is being deleted

Generated using TypeDoc