update documentation to new environment variables

This commit is contained in:
neri 2020-08-03 02:56:42 +02:00
parent 64c2567918
commit 2eb816134d
3 changed files with 14 additions and 9 deletions

View File

@ -28,9 +28,12 @@ docker-compose up -d --build
The static files directory needs to be next to the binary.
| environment variable | default value |
| -------------------- | --------------------- |
| DATABASE_URL | postresql://localhost |
| SERVER_URL | http://loalhost:8000 |
| -------------------- | -------------------- |
| DATABASE_URL | |
| DATABASE_USER | |
| DATABASE_PASS | |
| DATABASE_HOST | localhost |
| DATABASE_NAME | datatrash |
| FILES_DIR | ./files |
| UPLOAD_MAX_BYTES | 8388608 (8MiB) |
| BIND_ADDRESS | 0.0.0.0:8000 |

View File

@ -3,7 +3,9 @@ services:
datatrash:
build: .
environment:
DATABASE_URL: 'postgresql://admin:secure@postgres'
DATABASE_USER: admin
DATABASE_PASSWORD: secure
DATABASE_HOST: postgres
ports:
- '8000:8000'
postgres: