Merge pull request #458 from jeet-parekh/docker-compose

fix the docker-compose steps
This commit is contained in:
Karol Sójko
2020-09-01 10:39:20 +02:00
committed by GitHub

View File

@@ -85,15 +85,16 @@ Then open your browser to `http://localhost:3001`.
### Running Locally with Docker ### Running Locally with Docker
To run the app locally with Docker, first build the image by running: To run the app locally with Docker, first create a configuration file:
```
docker-compose build
```
Then configure and start the application by typing:
``` ```
cp .env.sample .env 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 docker-compose up
``` ```