From 40b7bada7a007f5704fb36b18979c9ab637fdc49 Mon Sep 17 00:00:00 2001 From: "Mr. Phil" <36644192+Mr-Phil1@users.noreply.github.com> Date: Thu, 5 Aug 2021 13:20:53 +0200 Subject: [PATCH] Update the docker-compose section. 1. Add the docker-compose up command 2. Add the explanation text for the docker-compose -f Flag --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 65c7ccd..1207296 100644 --- a/README.md +++ b/README.md @@ -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 up ```