|
3 | 3 | [](https://github.com/docker/compose-cli/actions) |
4 | 4 | [](https://github.com/docker/compose-cli/actions) |
5 | 5 |
|
6 | | -This CLI tool makes it easy to run Docker containers and Docker Compose applications in the cloud using either Amazon |
7 | | -Elastic Container Service |
| 6 | +This Compose CLI tool makes it easy to run Docker containers and Docker Compose applications: |
| 7 | +* locally as a command in the docker CLI, using `docker compose ...` comands. |
| 8 | +* in the cloud using either Amazon Elastic Container Service |
8 | 9 | ([ECS](https://aws.amazon.com/ecs)) |
9 | 10 | or Microsoft Azure Container Instances |
10 | 11 | ([ACI](https://azure.microsoft.com/services/container-instances)) |
11 | 12 | using the Docker commands you already know. |
12 | 13 |
|
13 | | -To get started, all you need is: |
| 14 | +## Local Docker Compose |
| 15 | + |
| 16 | +The `docker compose` local command is meant to be the next major version for docker-compose, and it supports the same commands and flags, in order to be used as a drop-in replacement. |
| 17 | +[Here](https://github.com/docker/compose-cli/issues/1283) is a checklist of docker-compose commands and flags that are implemented in `docker compose`. |
| 18 | + |
| 19 | +This `docker compose` local command : |
| 20 | +* has a better integration with the rest of the docker ecosystem (being written in go, it's easier to share functionality with the Docker CLI and other Docker libraries) |
| 21 | +* is quicker and uses more parallelism to run multiple tasks in parallel. It also uses buildkit by default |
| 22 | +* includes additional commands, like `docker compose ls` to list current compose projects |
| 23 | + |
| 24 | +## Getting started |
| 25 | + |
| 26 | +To get started with Compose CLI, all you need is: |
14 | 27 |
|
15 | | -* An [AWS](https://aws.amazon.com) or [Azure](https://azure.microsoft.com) |
16 | | - account |
17 | 28 | * Windows: The Stable or Edge release of |
18 | 29 | [Docker Desktop](https://hub.docker.com/editions/community/docker-ce-desktop-windows) |
19 | 30 | * macOS: The Stable or Edge release of |
20 | 31 | [Docker Desktop](https://hub.docker.com/editions/community/docker-ce-desktop-mac) |
21 | 32 | * Linux: |
22 | 33 | [Install script](INSTALL.md) |
| 34 | +* An [AWS](https://aws.amazon.com) or [Azure](https://azure.microsoft.com) |
| 35 | + account in order to use the Compose Cloud integration |
23 | 36 |
|
24 | 37 | Please create [issues](https://github.com/docker/compose-cli/issues) to leave feedback. |
25 | 38 |
|
|
0 commit comments