Docker Compose enables you to define and run multi-container applications. It relies on a single file in which you define an application along with its dependencies, and allows you to start the application with a single command.The Docker Compose plugin for Digital.ai Release allows you to create, start, stop, destroy, and run commands on containers as a part of your release processes.
Steps
dockerCompose.Task: Base task which can be extended by other tasks.
dockerCompose.up: Creates a container on a Docker host. Requires configuration to be specified in YAML format.
dockerCompose.down: Removes a container, network, image, or volume on a Docker host. Requires configuration to be specified in YAML format.
dockerCompose.start: Sarts a container or service on a Docker host. Requires configuration to be specified in YAML format.
dockerCompose.stop: Stops a container or service on a Docker host. Requires configuration to be specified in YAML format.
dockerCompose.command: Executes any docker-compose command.