Struct rust_docker::api::containers::ContainerConfig[][src]

pub struct ContainerConfig {
    pub Image: String,
    pub Cmd: Vec<String>,
    pub Hostname: String,
    pub Domainname: String,
    pub User: String,
    pub AttachStdin: bool,
    pub AttachStdout: bool,
    pub AttachStderr: bool,
    pub Tty: bool,
    pub OpenStdin: bool,
    pub StdinOnce: bool,
    pub Env: Vec<String>,
    pub Entrypoint: Option<String>,
    pub Labels: Option<HashMap<String, String>>,
    pub WorkingDir: String,
}

Structure for implementing Container Config Derives Default fot being able to get started even with minimal config.

Fields

Trait Implementations

impl Debug for ContainerConfig
[src]

Formats the value using the given formatter. Read more

impl Default for ContainerConfig
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations