[−][src]Struct docker_command::RunOpt
Options for running a container.
Fields
image: StringContainer image to run.
detach: boolIf true, run the container in the background and print
container ID. Defaults to false.
init: boolRun an init inside the container that forwards signals and reaps processes.
name: Option<String>Optional name to give the container.
network: Option<String>Connect a container to a network.
user: Option<User>User (and optionally group) to use inside the container.
read_only: boolMount the container's root filesystem as read only.
remove: boolIf true, automatically remove the container when it
exits. Defaults to false.
volumes: Vec<Volume>Volumes to mount in the container.
command: Option<PathBuf>Optional command to run.
args: Vec<OsString>Optional arguments to pass to the command.
Trait Implementations
impl Clone for RunOpt[src]
impl Debug for RunOpt[src]
impl Default for RunOpt[src]
impl Eq for RunOpt[src]
impl PartialEq<RunOpt> for RunOpt[src]
impl StructuralEq for RunOpt[src]
impl StructuralPartialEq for RunOpt[src]
Auto Trait Implementations
impl RefUnwindSafe for RunOpt
impl Send for RunOpt
impl Sync for RunOpt
impl Unpin for RunOpt
impl UnwindSafe for RunOpt
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,