From 0da424b5c683a3aa0163f101c4a5c530e42ab19c Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Wed, 6 Jul 2022 16:33:40 +0100 Subject: [PATCH] Adding missing environment variable. --- hosting/single/Dockerfile | 3 ++- hosting/single/test.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hosting/single/Dockerfile b/hosting/single/Dockerfile index 5e1b0b1374..b338201a20 100644 --- a/hosting/single/Dockerfile +++ b/hosting/single/Dockerfile @@ -50,7 +50,8 @@ ENV \ SELF_HOSTED=1 \ TARGETBUILD=$TARGETBUILD \ WORKER_PORT=4002 \ - WORKER_URL=http://localhost:4002 + WORKER_URL=http://localhost:4002 \ + APPS_URL=http://localhost:4001 # install base dependencies RUN apt-get update && \ diff --git a/hosting/single/test.sh b/hosting/single/test.sh index c7ef53f994..8830426a47 100755 --- a/hosting/single/test.sh +++ b/hosting/single/test.sh @@ -1,4 +1,4 @@ #!/bin/bash -id=$(docker run -t -d -p 80:80 budibase:latest) +id=$(docker run -t -d -p 8080:80 budibase:latest) docker exec -it $id bash docker kill $id