From 171fe7355c14e24e3bc34c705341454933d12541 Mon Sep 17 00:00:00 2001 From: Radical Date: Mon, 26 May 2025 13:54:09 +0000 Subject: [PATCH] fix: use correct env var in dockerfile/compose --- Dockerfile | 2 +- compose.dev.yml | 2 +- compose.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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