Forrest logo
tool overview
On this page you find all important commands for the CLI tool docker-compose. If the command you are looking for is missing please ask our AI.

docker-compose

Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration.

List of commands for docker-compose:

  • docker:compose:start Runs a set of docker containers like configured in the docker-compose.yml file.
    $ docker-compose up
    try on your machine
    explain this command
  • docker:compose:start:daemonized Runs a set of docker containers (in the background) like configured in the docker-compose.yml file.
    $ docker-compose up -d
    try on your machine
    explain this command
tool overview