# `Docker.Commands.Pull`
[🔗](https://github.com/joshrotenberg/docker_wrapper_ex/blob/v0.1.2/lib/docker/commands/pull.ex#L1)

Implements the `Docker.Command` behaviour for `docker pull`.

## Examples

    import Docker.Commands.Pull

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

# `t`

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

# `all_tags`

# `new`

# `platform`

# `quiet`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
