chore: clean up

This commit is contained in:
Paul Makles
2022-04-29 16:58:11 +01:00
parent c605ec312f
commit 64933596f5
3 changed files with 20 additions and 7 deletions

View File

@@ -95,11 +95,11 @@ MINIO_ROOT_USER=minioautumn
# MinIO Root Password # MinIO Root Password
MINIO_ROOT_PASSWORD=minioautumn MINIO_ROOT_PASSWORD=minioautumn
# AWS Access Key ID (auto-filled if present above) # AWS Access Key ID
# AWS_ACCESS_KEY_ID=minioautumn AWS_ACCESS_KEY_ID=minioautumn
# AWS Secret Key (auto-filled if present above) # AWS Secret Key
# AWS_SECRET_ACCESS_KEY=minioautumn AWS_SECRET_ACCESS_KEY=minioautumn
## ##

6
.gitignore vendored
View File

@@ -1,3 +1,5 @@
data data*
data.old
.env .env
docker-compose.override.yml

View File

@@ -51,6 +51,17 @@ Then bring up Revolt:
docker-compose up -d docker-compose up -d
``` ```
## Expose Database
You can insecurely expose the database by creating `docker-compose.override.yml` with the content:
```yml
services:
database:
ports:
- "27017:27017"
```
## To-Do ## To-Do
- Interactive setup. - Interactive setup.