1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-07 14:25:37 +00:00

Fix heroku not being able to launch.

This commit is contained in:
Nigel Gott 2022-07-05 19:39:04 +00:00 committed by Bram Wiepjes
parent 2bc97a2643
commit 06bb1f8b98
2 changed files with 8 additions and 2 deletions
deploy

View file

@ -29,4 +29,7 @@ export EMAIL_SMTP_PASSWORD=$MAILGUN_SMTP_PASSWORD
# Heroku generates a random user who runs this container, set DOCKER_USER to that user
# so we can setup the DATA_DIR.
DOCKER_USER=$(whoami)
export DOCKER_USER
export DOCKER_USER
# We must run the caddy user as the docker user to prevent supervisord errors
export BASEROW_CADDY_USER="${BASEROW_CADDY_USER:-$DOCKER_USER}"

View file

@ -21,4 +21,7 @@ export EMAIL_SMTP="false"
# Render generates a random user who runs this container, set DOCKER_USER to that user
# so we can setup the DATA_DIR.
DOCKER_USER=$(whoami)
export DOCKER_USER
export DOCKER_USER
# We must run the caddy user as the docker user to prevent supervisord errors
export BASEROW_CADDY_USER="${BASEROW_CADDY_USER:-$DOCKER_USER}"