Should now copy the frontend files in a dedicated directory on container startup so they can be reached from outside
This commit is contained in:
parent
0db752e0df
commit
38f22dab94
|
@ -9,10 +9,15 @@ export REDIS_URL=redis://redis:6379/0
|
||||||
# the official postgres image uses 'postgres' as default user if not set explictly.
|
# the official postgres image uses 'postgres' as default user if not set explictly.
|
||||||
if [ -z "$POSTGRES_ENV_POSTGRES_USER" ]; then
|
if [ -z "$POSTGRES_ENV_POSTGRES_USER" ]; then
|
||||||
export POSTGRES_ENV_POSTGRES_USER=postgres
|
export POSTGRES_ENV_POSTGRES_USER=postgres
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export DATABASE_URL=postgres://$POSTGRES_ENV_POSTGRES_USER:$POSTGRES_ENV_POSTGRES_PASSWORD@postgres:5432/$POSTGRES_ENV_POSTGRES_USER
|
export DATABASE_URL=postgres://$POSTGRES_ENV_POSTGRES_USER:$POSTGRES_ENV_POSTGRES_PASSWORD@postgres:5432/$POSTGRES_ENV_POSTGRES_USER
|
||||||
|
|
||||||
export CELERY_BROKER_URL=$REDIS_URL
|
export CELERY_BROKER_URL=$REDIS_URL
|
||||||
|
|
||||||
exec "$@"
|
# we copy the frontend files, if any so we can serve them from the outside
|
||||||
|
if [ -d "frontend" ]; then
|
||||||
|
mkdir -p /frontend
|
||||||
|
cp -r frontend/* /frontend/
|
||||||
|
fi
|
||||||
|
exec "$@"
|
||||||
|
|
Loading…
Reference in New Issue