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

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

## Examples

    import Docker.Commands.Logs

    "my-container"
    |> new()
    |> tail(100)
    |> timestamps()
    |> Docker.logs()

# `t`

```elixir
@type t() :: %Docker.Commands.Logs{
  container: String.t(),
  details: boolean(),
  follow: boolean(),
  since: String.t() | nil,
  tail: String.t() | nil,
  timestamps: boolean(),
  until_time: String.t() | nil
}
```

# `details`

# `follow`

# `new`

# `since`

# `tail`

# `timestamps`

# `until_time`

---

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