From 78722e63f8c52de4a1e2dd6ab41ecc28f9ad0055 Mon Sep 17 00:00:00 2001 From: Jeet Parekh Date: Tue, 1 Sep 2020 10:51:24 +0530 Subject: [PATCH] fix the docker-compose steps --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 00c0af8f1..6de3922de 100644 --- a/README.md +++ b/README.md @@ -85,15 +85,16 @@ Then open your browser to `http://localhost:3001`. ### Running Locally with Docker -To run the app locally with Docker, first build the image by running: -``` -docker-compose build -``` +To run the app locally with Docker, first create a configuration file: -Then configure and start the application by typing: ``` cp .env.sample .env -// adjust your config if needed +``` + +Adjust the configuration file if needed. Then start the application by typing: + +``` +docker-compose build docker-compose up ```