sistem-akademik/entrypoint.sh
Triono Putra d3831fd510
Some checks failed
continuous-integration/drone/push Build is failing
oks
2025-06-05 07:04:01 +07:00

15 lines
329 B
Bash

#!/bin/sh
# Salin .env jika belum ada
if [ ! -f .env ]; then
cp .env.example .env
fi
# Set ownership dan permission untuk Laravel
chown -R www-data:www-data /var/www
chmod -R 775 /var/www/storage /var/www/bootstrap/cache
chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache
# Jalankan php-fpm
exec php-fpm