Module: Indocker::ContainerMetadata::States

Defined in:
lib/indocker/container/container_metadata.rb

Constant Summary collapse

CREATED =
'created'
RESTARTING =
'restarting'
RUNNING =
'running'
PAUSED =
'paused'
EXITED =
'exited'
DEAD =
'dead'
ALL =
[CREATED, RESTARTING, RUNNING, PAUSED, EXITED, DEAD]