diff --git a/Dockerfile b/Dockerfile index e556fe6..f76653a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ diff --git a/compose.dev.yml b/compose.dev.yml index 6b1ecda..af28fcc 100644 --- a/compose.dev.yml +++ b/compose.dev.yml @@ -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 diff --git a/compose.yml b/compose.yml index 438b4ba..e3ad269 100644 --- a/compose.yml +++ b/compose.yml @@ -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