Struct podman_autogen_api::models::config::Config
source · pub struct Config {Show 25 fields
pub args_escaped: Option<bool>,
pub attach_stderr: Option<bool>,
pub attach_stdin: Option<bool>,
pub attach_stdout: Option<bool>,
pub cmd: Option<Vec<String>>,
pub domainname: Option<String>,
pub entrypoint: Option<Vec<String>>,
pub env: Option<Vec<String>>,
pub exposed_ports: Option<HashMap<String, Value>>,
pub healthcheck: Option<Box<HealthcheckConfig>>,
pub hostname: Option<String>,
pub image: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub mac_address: Option<String>,
pub network_disabled: Option<bool>,
pub on_build: Option<Vec<String>>,
pub open_stdin: Option<bool>,
pub shell: Option<Vec<String>>,
pub stdin_once: Option<bool>,
pub stop_signal: Option<String>,
pub stop_timeout: Option<i64>,
pub tty: Option<bool>,
pub user: Option<String>,
pub volumes: Option<HashMap<String, Value>>,
pub working_dir: Option<String>,
}
Expand description
Config : It should hold only portable information about the container. Here, "portable" means "independent from the host we are running on". Non-portable information should appear in HostConfig. All fields added to this struct must be marked omitempty
to keep getting predictable hashes from the old v1Compatibility
configuration.
Fields§
§args_escaped: Option<bool>
§attach_stderr: Option<bool>
§attach_stdin: Option<bool>
§attach_stdout: Option<bool>
§cmd: Option<Vec<String>>
We need to override the json decoder to accept both options.
domainname: Option<String>
§entrypoint: Option<Vec<String>>
We need to override the json decoder to accept both options.
env: Option<Vec<String>>
§exposed_ports: Option<HashMap<String, Value>>
PortSet is a collection of structs indexed by Port
healthcheck: Option<Box<HealthcheckConfig>>
§hostname: Option<String>
§image: Option<String>
§labels: Option<HashMap<String, String>>
§mac_address: Option<String>
Mac Address of the container. Deprecated: this field is deprecated since API v1.44. Use EndpointSettings.MacAddress instead.
network_disabled: Option<bool>
§on_build: Option<Vec<String>>
§open_stdin: Option<bool>
§shell: Option<Vec<String>>
We need to override the json decoder to accept both options.
stdin_once: Option<bool>
§stop_signal: Option<String>
§stop_timeout: Option<i64>
§tty: Option<bool>
§user: Option<String>
§volumes: Option<HashMap<String, Value>>
§working_dir: Option<String>
Implementations§
source§impl Config
impl Config
sourcepub fn new() -> Config
pub fn new() -> Config
It should hold only portable information about the container. Here, "portable" means "independent from the host we are running on". Non-portable information should appear in HostConfig. All fields added to this struct must be marked omitempty
to keep getting predictable hashes from the old v1Compatibility
configuration.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
source§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>,
source§impl PartialEq for Config
impl PartialEq for Config
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)