mirror of https://github.com/docker/docs.git
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:
parent
01028d58ce
commit
31bdfddbc4
|
@ -177,7 +177,7 @@ $ npm install nodemon
|
|||
Let’s start our application and confirm that it is running properly.
|
||||
|
||||
```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.
|
||||
|
|
Loading…
Reference in New Issue