...

/

Chapter Summary: Multi-Container Apps with Compose

Chapter Summary: Multi-Container Apps with Compose

Summarize the concepts covered in this chapter.

We'll cover the following...

Commands

Let’s explore all the Docker Compose commands covered in this chapter.

  • docker compose up deploys a Compose app. It creates all images, containers, networks, and volumes the app needs. It expects you to call the Compose file compose.yaml, but you can specify a custom file name with the -f flag. You’ll normally start the app in the background with the --detach ...