Merge pull request #8689 from mat007/fix-compose-up-in-readme

Fix compose up in readme
This commit is contained in:
Ulysses Souza 2021-09-28 17:41:41 +02:00 committed by GitHub
commit fdf89e0e16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: