14 lines
256 B
Bash
Executable File
14 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd /var/www/html
|
|
|
|
if [ ! -d "vendor" ]; then
|
|
composer install --no-interaction --prefer-dist --optimize-autoloader
|
|
fi
|
|
|
|
chown -R www-data:www-data storage bootstrap/cache
|
|
chmod -R 775 storage bootstrap/cache
|
|
|
|
exec apache2-foreground
|