You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trial/docker/fpm/bootstrap.sh

12 lines
342 B
Bash

#!/bin/sh
cd /var/www/trial && \
composer install && \
php bin/console cache:clear --env=$APP_ENV && \
php bin/console cache:warmup --env=$APP_ENV && \
php bin/console doctrine:migrations:migrate --no-interaction --env=$APP_ENV && \
yarn install && \
yarn encore $APP_ENV && \
# Start the server
/usr/local/bin/docker-php-entrypoint php-fpm