fix: use correct env var in dockerfile/compose

This commit is contained in:
Radical 2025-05-26 13:54:09 +00:00
parent 03dd1d06e2
commit 171fe7355c
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ RUN useradd --create-home --home-dir /gorb gorb
USER gorb USER gorb
ENV URL=http://localhost:8080 \ ENV WEB_URL=http://localhost:8080 \
DATABASE_USERNAME=gorb \ DATABASE_USERNAME=gorb \
DATABASE_PASSWORD=gorb \ DATABASE_PASSWORD=gorb \
DATABASE=gorb \ DATABASE=gorb \

View file

@ -19,7 +19,7 @@ services:
environment: environment:
#- RUST_LOG=debug #- RUST_LOG=debug
# This should be changed to the public URL of the server! # This should be changed to the public URL of the server!
- URL=http://localhost:8080 - WEB_URL=http://localhost:8080
- DATABASE_USERNAME=gorb - DATABASE_USERNAME=gorb
- DATABASE_PASSWORD=gorb - DATABASE_PASSWORD=gorb
- DATABASE=gorb - DATABASE=gorb

View file

@ -17,7 +17,7 @@ services:
environment: environment:
#- RUST_LOG=debug #- RUST_LOG=debug
# This should be changed to the public URL of the server! # This should be changed to the public URL of the server!
- URL=http://localhost:8080 - WEB_URL=http://localhost:8080
- DATABASE_USERNAME=gorb - DATABASE_USERNAME=gorb
- DATABASE_PASSWORD=gorb - DATABASE_PASSWORD=gorb
- DATABASE=gorb - DATABASE=gorb