11 lines
249 B
Bash
Executable file
11 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
mkdir -p /app/var/data /app/var/bootstrap-cache
|
|
chown -R www-data:www-data /app/var
|
|
|
|
if [ "${APP_ENV:-prod}" != "test" ]; then
|
|
php /app/bin/console doctrine:migrations:migrate --no-interaction --allow-no-migration
|
|
fi
|
|
|
|
exec "$@"
|