mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
<!--Delete sections as needed --> ## Description As discussed before xmas, we will be removing opensource release note pages and pointing users directly to the GitHub page ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review
2.6 KiB
2.6 KiB
title, weight, description, keywords, params, grid, aliases
| title | weight | description | keywords | params | grid | aliases | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Docker Compose | 30 | Learn how to use Docker Compose to define and run multi-container applications with this detailed introduction to the tool. | docker compose, docker-compose, compose.yaml, docker compose command, multi-container applications, container orchestration, docker cli |
|
|
|
Docker Compose is a tool for defining and running multi-container applications. It is the key to unlocking a streamlined and efficient development and deployment experience.
Compose simplifies the control of your entire application stack, making it easy to manage services, networks, and volumes in a single YAML configuration file. Then, with a single command, you create and start all the services from your configuration file.
Compose works in all environments - production, staging, development, testing, as well as CI workflows. It also has commands for managing the whole lifecycle of your application:
- Start, stop, and rebuild services
- View the status of running services
- Stream the log output of running services
- Run a one-off command on a service
{{< grid >}}