Skip to content

Commit

Permalink
docs: update README for MongoDB server version compat (#1293)
Browse files Browse the repository at this point in the history
  • Loading branch information
lirantal authored Jan 19, 2023
1 parent 146d69a commit b00e701
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ npm start
```
This will run Goof locally, using a local mongo on the default port and listening on port 3001 (http://localhost:3001)

Note: You *have* to use an old version of MongoDB version due to some of these old libraries' database server APIs. MongoDB 3 is known to work ok.

You can also run the MongoDB server individually via Docker, such as:

```sh
docker run --rm -p 27017:27017 mongo:3
```

## Running with docker-compose
```bash
docker-compose up --build
Expand Down

0 comments on commit b00e701

Please sign in to comment.