1
0
Fork 0
mirror of synced 2024-09-28 23:31:43 +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 \ SELF_HOSTED=1 \
TARGETBUILD=$TARGETBUILD \ TARGETBUILD=$TARGETBUILD \
WORKER_PORT=4002 \ WORKER_PORT=4002 \
WORKER_URL=http://localhost:4002 WORKER_URL=http://localhost:4002 \
APPS_URL=http://localhost:4001
# install base dependencies # install base dependencies
RUN apt-get update && \ RUN apt-get update && \

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/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 exec -it $id bash
docker kill $id docker kill $id