From 03dd1d06e285fafb811548d417651cc6b105993e Mon Sep 17 00:00:00 2001 From: Radical Date: Mon, 26 May 2025 13:53:46 +0000 Subject: [PATCH 1/2] fix: update entrypoint.sh to not insert bunny when unused --- entrypoint.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 82b8271..5cf3dc3 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,6 +14,9 @@ fi if [ ! -f "/gorb/config/config.toml" ]; then cat > /gorb/config/config.toml <> "/gorb/config/config.toml" < Date: Mon, 26 May 2025 13:54:09 +0000 Subject: [PATCH 2/2] 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