Correct docker compose command (error with "-") (#16426)

I already removed it
This commit is contained in:
Nghiauet 2023-01-04 20:54:11 +07:00 committed by GitHub
parent 63cf83519a
commit e5df3a3799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ If you have any containers running from the previous sections, [stop](./run-cont
Now, to start our application and to confirm that it is running properly, run the following command:
```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 will compile our image and then start the containers.