Struct docker_api::api::container::models::ContainerConfig [−][src]
pub struct ContainerConfig {Show 25 fields
pub hostname: String,
pub domainname: String,
pub user: String,
pub attach_stdin: bool,
pub attach_stdout: bool,
pub attach_stderr: bool,
pub exposed_ports: Vec<PublishPort>,
pub tty: bool,
pub open_stdin: bool,
pub stdin_once: bool,
pub env: Vec<String>,
pub cmd: Option<Vec<String>>,
pub healthcheck: Option<HealthConfig>,
pub args_escaped: Option<bool>,
pub image: String,
pub volumes: Option<VolumesMap>,
pub working_dir: String,
pub entrypoint: Option<Vec<String>>,
pub network_disabled: Option<bool>,
pub mac_address: Option<String>,
pub on_build: Option<Vec<String>>,
pub labels: Option<Labels>,
pub stop_signal: Option<String>,
pub stop_timeout: Option<isize>,
pub shell: Option<Vec<String>>,
}
Fields
hostname: String
domainname: String
user: String
attach_stdin: bool
attach_stdout: bool
attach_stderr: bool
exposed_ports: Vec<PublishPort>
tty: bool
open_stdin: bool
stdin_once: bool
env: Vec<String>
cmd: Option<Vec<String>>
healthcheck: Option<HealthConfig>
args_escaped: Option<bool>
image: String
volumes: Option<VolumesMap>
working_dir: String
entrypoint: Option<Vec<String>>
network_disabled: Option<bool>
mac_address: Option<String>
on_build: Option<Vec<String>>
labels: Option<Labels>
stop_signal: Option<String>
stop_timeout: Option<isize>
shell: Option<Vec<String>>
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ContainerConfig
impl Send for ContainerConfig
impl Sync for ContainerConfig
impl Unpin for ContainerConfig
impl UnwindSafe for ContainerConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more