update documentation to new environment variables
This commit is contained in:
parent
64c2567918
commit
2eb816134d
|
@ -17,7 +17,7 @@ RUN cargo install --path . --features vendored
|
||||||
|
|
||||||
FROM alpine
|
FROM alpine
|
||||||
|
|
||||||
ENV RUST_BACKTRACE "1"
|
ENV RUST_BACKTRACE "1"
|
||||||
|
|
||||||
COPY --from=build /home/rust/.cargo/bin/datatrash .
|
COPY --from=build /home/rust/.cargo/bin/datatrash .
|
||||||
COPY static ./static
|
COPY static ./static
|
||||||
|
|
17
README.md
17
README.md
|
@ -27,12 +27,15 @@ docker-compose up -d --build
|
||||||
|
|
||||||
The static files directory needs to be next to the binary.
|
The static files directory needs to be next to the binary.
|
||||||
|
|
||||||
| environment variable | default value |
|
| environment variable | default value |
|
||||||
| -------------------- | --------------------- |
|
| -------------------- | -------------------- |
|
||||||
| DATABASE_URL | postresql://localhost |
|
| DATABASE_URL | |
|
||||||
| SERVER_URL | http://loalhost:8000 |
|
| DATABASE_USER | |
|
||||||
| FILES_DIR | ./files |
|
| DATABASE_PASS | |
|
||||||
| UPLOAD_MAX_BYTES | 8388608 (8MiB) |
|
| DATABASE_HOST | localhost |
|
||||||
| BIND_ADDRESS | 0.0.0.0:8000 |
|
| DATABASE_NAME | datatrash |
|
||||||
|
| FILES_DIR | ./files |
|
||||||
|
| UPLOAD_MAX_BYTES | 8388608 (8MiB) |
|
||||||
|
| BIND_ADDRESS | 0.0.0.0:8000 |
|
||||||
|
|
||||||
The maximum filename length is 255
|
The maximum filename length is 255
|
||||||
|
|
|
@ -3,7 +3,9 @@ services:
|
||||||
datatrash:
|
datatrash:
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
DATABASE_URL: 'postgresql://admin:secure@postgres'
|
DATABASE_USER: admin
|
||||||
|
DATABASE_PASSWORD: secure
|
||||||
|
DATABASE_HOST: postgres
|
||||||
ports:
|
ports:
|
||||||
- '8000:8000'
|
- '8000:8000'
|
||||||
postgres:
|
postgres:
|
||||||
|
|
Loading…
Reference in New Issue