mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 20:11:58 +02:00
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
1 changed files with 7 additions and 2 deletions
|
@ -15,4 +15,9 @@ export DATABASE_URL=postgres://$POSTGRES_ENV_POSTGRES_USER:$POSTGRES_ENV_POSTGRE
|
|||
|
||||
export CELERY_BROKER_URL=$REDIS_URL
|
||||
|
||||
# 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…
Add table
Add a link
Reference in a new issue