Merge pull request #16081 from achianumba/main

fixes "Command 'docker-compose' not found" error.
This commit is contained in:
Craig Osterhout 2022-11-04 08:11:30 -07:00 committed by GitHub
commit e565f1ca51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ $ npm install nodemon
Lets start our application and confirm that it is running properly. Lets start our application and confirm that it is running properly.
```console ```console
$ docker-compose -f docker-compose.dev.yml up --build $ docker compose -f docker-compose.dev.yml up --build
``` ```
We pass the `--build` flag so Docker compiles our image and then starts it. We pass the `--build` flag so Docker compiles our image and then starts it.