Update the docker-compose section.

1. Add the docker-compose up command
2. Add the explanation text for the docker-compose -f Flag
This commit is contained in:
Mr. Phil 2021-08-05 13:20:53 +02:00 committed by GitHub
parent 439a77f962
commit 40b7bada7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -546,6 +546,13 @@ Compose is a tool for defining and running multi-container Docker applications.
By using the following command you can start up your application:
```
docker-compose up
```
You can start your application from another location with the following command:
With the -f Flag you can specify the path to the docker-compose.yml File.
```
docker-compose -f <docker-compose-file> up
```