fixes "Command 'docker-compose' not found" error.

This commit fixes the error thrown due to a typo in the command docker-compose -f docker-compose.dev.yml up --build. The correct command is docker compose -f docker-compose.dev.yml up --build without the hyphen between 'docker' and 'compose' in the command sequence.
This commit is contained in:
Arinze Chianumba 2022-11-04 16:18:05 +01:00 committed by GitHub
parent e565f1ca51
commit f85256ee43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ describe('Array', function() {
Lets build our Docker image and confirm everything is running properly. Run the following command to build and run your Docker image in a container.
```console
$ docker-compose -f docker-compose.dev.yml up --build
$ docker compose -f docker-compose.dev.yml up --build
```
Now lets test our application by POSTing a JSON payload and then make an HTTP GET request to make sure our JSON was saved correctly.
@ -86,7 +86,7 @@ Okay, now that we know our application is running properly, lets try and run
Below is the Docker command to start the container and run tests:
```console
$ docker-compose -f docker-compose.dev.yml run notes npm run test
$ docker compose -f docker-compose.dev.yml run notes npm run test
Creating node-docker_notes_run ...
> node-docker@1.0.0 test /code