Docker.Commands.Pull (docker_wrapper v0.1.2)

Copy Markdown View Source

Implements the Docker.Command behaviour for docker pull.

Examples

import Docker.Commands.Pull

"nginx:alpine"
|> new()
|> platform("linux/amd64")
|> Docker.pull()

Summary

Types

t()

@type t() :: %Docker.Commands.Pull{
  all_tags: boolean(),
  image: String.t(),
  platform: String.t() | nil,
  quiet: boolean()
}

Functions

all_tags(cmd)

new(image)

platform(cmd, p)

quiet(cmd)