Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,19 @@ This message will be thrown by the application container, if you initially start

The initial database seed is probably not yet fully imported into your MongoDB. As above, wait a bit until it's processed in the background.

### `MongoError: Can’t find migration version 202`

Downgrade db migrations version to 197.

```shell
docker exec -i -t CONTAINER_MONGODB_NAME bash
mongo
use admin
db.migrations.update({}, {$set: {version: 197, locked: false}})
exit
exit
```

## Contributing

1. Fork it
Expand Down