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()
Summary
Types
@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() }