pub struct CreateImageOptions<'a, T>{
pub from_image: T,
pub from_src: T,
pub repo: T,
pub tag: T,
pub platform: T,
pub changes: Vec<&'a str>,
}Expand description
Parameters available for pulling an image, used in the Create Image API
§Examples
use bollard::image::CreateImageOptions;
use std::default::Default;
CreateImageOptions{
from_image: "hello-world",
..Default::default()
};CreateImageOptions::<String>{
..Default::default()
};Fields§
§from_image: TName of the image to pull. The name may include a tag or digest. This parameter may only be used when pulling an image. The pull is cancelled if the HTTP connection is closed.
from_src: TSource to import. The value may be a URL from which the image can be retrieved or - to
read the image from the request body. This parameter may only be used when importing an
image.
repo: TRepository name given to an image when it is imported. The repo may include a tag. This parameter may only be used when importing an image.
tag: TTag or digest. If empty when pulling an image, this causes all tags for the given image to be pulled.
platform: TPlatform in the format os[/arch[/variant]]
changes: Vec<&'a str>A list of Dockerfile instructions to be applied to the image being created. Changes must be URL-encoded! This parameter may only be used when importing an image.
Trait Implementations§
Source§impl<'a, T> Clone for CreateImageOptions<'a, T>
impl<'a, T> Clone for CreateImageOptions<'a, T>
Source§fn clone(&self) -> CreateImageOptions<'a, T>
fn clone(&self) -> CreateImageOptions<'a, T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more