Fix compose up in readme

Signed-off-by: Mathieu Champlon <mathieu.champlon@docker.com>
This commit is contained in:
Mathieu Champlon 2021-09-28 17:03:55 +02:00
parent 17d845b3d2
commit 2b8fd90021
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ defined using the [Compose file format](https://compose-spec.io).
A Compose file is used to define how the one or more containers that make up
your application are configured.
Once you have a Compose file, you can create and start your application with a
single command: `docker-compose up`.
single command: `docker compose up`.
# Where to get Docker Compose
@ -35,7 +35,7 @@ Using Docker Compose is basically a three-step process:
reproduced anywhere.
2. Define the services that make up your app in `docker-compose.yml` so
they can be run together in an isolated environment.
3. Lastly, run `docker-compose up` and Compose will start and run your entire
3. Lastly, run `docker compose up` and Compose will start and run your entire
app.
A Compose file looks like this: