[][src]Struct docker_command::BuildOpt

pub struct BuildOpt {
    pub build_args: Vec<(String, String)>,
    pub context: PathBuf,
    pub dockerfile: Option<PathBuf>,
    pub no_cache: bool,
    pub pull: bool,
    pub quiet: bool,
    pub tag: Option<String>,
}

Options for building a container.

Fields

build_args: Vec<(String, String)>

Build-time variables.

context: PathBuf

Root directory containing files that can be pulled into the container.

dockerfile: Option<PathBuf>

Dockerfile to build. This must be somewhere in the context directory. If not set (the default) then <context>/Dockerfile is used.

no_cache: bool

Do not use cache when building the image.

pull: bool

Always attempt to pull a newer version of the image.

quiet: bool

Suppress the build output and print image ID on success.

tag: Option<String>

If set, the image will be tagged with this name.

Trait Implementations

impl Clone for BuildOpt[src]

impl Debug for BuildOpt[src]

impl Default for BuildOpt[src]

impl Eq for BuildOpt[src]

impl PartialEq<BuildOpt> for BuildOpt[src]

impl StructuralEq for BuildOpt[src]

impl StructuralPartialEq for BuildOpt[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.