chore: add notes

pull/47/head
Paul Makles 3 years ago committed by GitHub
parent 28bab41878
commit 51df0f07a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,19 +51,27 @@ Then bring up Revolt:
docker-compose up -d
```
## Expose Database
## Additional Notes
You can insecurely expose the database by creating `docker-compose.override.yml` with the content:
### Expose database
You can insecurely expose the database by adding a port definition:
```yml
# docker-compose.override.yml
services:
database:
ports:
- "27017:27017"
```
## To-Do
### Mongo compatibility
Older processors may not support the latest MongoDB version, you may pin to MongoDB 4.4 as such:
- Interactive setup.
- Add Caddy.
- Add voso.
```yml
# docker-compose.override.yml
services:
database:
image: mongo:4.4
```

Loading…
Cancel
Save