fix: use correct env var in dockerfile/compose
This commit is contained in:
parent
03dd1d06e2
commit
171fe7355c
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ RUN useradd --create-home --home-dir /gorb gorb
|
|||
|
||||
USER gorb
|
||||
|
||||
ENV URL=http://localhost:8080 \
|
||||
ENV WEB_URL=http://localhost:8080 \
|
||||
DATABASE_USERNAME=gorb \
|
||||
DATABASE_PASSWORD=gorb \
|
||||
DATABASE=gorb \
|
||||
|
|
|
@ -19,7 +19,7 @@ services:
|
|||
environment:
|
||||
#- RUST_LOG=debug
|
||||
# This should be changed to the public URL of the server!
|
||||
- URL=http://localhost:8080
|
||||
- WEB_URL=http://localhost:8080
|
||||
- DATABASE_USERNAME=gorb
|
||||
- DATABASE_PASSWORD=gorb
|
||||
- DATABASE=gorb
|
||||
|
|
|
@ -17,7 +17,7 @@ services:
|
|||
environment:
|
||||
#- RUST_LOG=debug
|
||||
# This should be changed to the public URL of the server!
|
||||
- URL=http://localhost:8080
|
||||
- WEB_URL=http://localhost:8080
|
||||
- DATABASE_USERNAME=gorb
|
||||
- DATABASE_PASSWORD=gorb
|
||||
- DATABASE=gorb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue