passivized_docker_engine_client 0.0.10-alpha

Docker Engine Client - manage and run containers, images, and volumes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/// See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerWait
#[derive(Clone, Debug)]
pub enum WaitCondition {
    /// Not supported by Docker on Windows.
    NotRunning,

    /// Wait until the container exits again. If the container is stopped, this will wait
    /// until it is started and stopped. If the container is never started after waiting
    /// for NextExit, this waits indefinitely.
    NextExit,

    /// Wait until the container no longer exists.
    Removed,
}