chore: updated minimum mongo versions (#2592)

This commit is contained in:
Wyatt Johnson
2019-09-30 16:15:24 +00:00
committed by GitHub
parent aab44587a6
commit 4445479237
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -20,14 +20,14 @@ npm install
Running Coral with default settings assumes that you have:
- MongoDB >=3.6 running on `127.0.0.1:27017`
- MongoDB >=4.2 running on `127.0.0.1:27017`
- Redis >=3.2 running on `127.0.0.1:6379`
If you don't already have these databases running, you can execute the following
assuming you have Docker installed on your local machine:
```bash
docker run -d -p 27017:27017 --restart always --name mongo mongo:3.6
docker run -d -p 27017:27017 --restart always --name mongo mongo:4.2
docker run -d -p 6379:6379 --restart always --name redis redis:3.2
```