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

Implements the `Docker.Command` behaviour for `docker compose up`.

## Examples

    import Docker.Commands.Compose.Up

    new()
    |> file("docker-compose.yml")
    |> detach()
    |> build()
    |> service("redis")
    |> Docker.compose_up()

# `t`

```elixir
@type t() :: %Docker.Commands.Compose.Up{
  abort_on_container_exit: term(),
  always_recreate_deps: term(),
  build_flag: term(),
  detach: term(),
  env_files: term(),
  files: term(),
  force_recreate: term(),
  no_build: term(),
  no_deps: term(),
  no_recreate: term(),
  no_start: term(),
  profiles: term(),
  project_directory: term(),
  project_name: term(),
  pull: term(),
  quiet_pull: term(),
  remove_orphans: term(),
  scale: term(),
  services: term(),
  timeout: term(),
  wait: term()
}
```

# `abort_on_container_exit`

# `always_recreate_deps`

# `build`

# `detach`

# `env_file`

# `file`

# `force_recreate`

# `new`

# `no_build`

# `no_deps`

# `no_recreate`

# `no_start`

# `profile`

# `project_directory`

# `project_name`

# `pull_policy`

# `quiet_pull`

# `remove_orphans`

# `scale`

# `service`

# `timeout`

# `wait`

---

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