1
0
Fork 0
mirror of synced 2024-06-13 16:05:06 +12:00

Adding missing environment variable.

This commit is contained in:
mike12345567 2022-07-06 16:33:40 +01:00
parent aad4e552c3
commit 0da424b5c6
2 changed files with 3 additions and 2 deletions

View file

@ -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 && \

View file

@ -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