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