Files
SAE-BUT2-docker/docker/php/entrypoint.sh
T
2026-01-28 15:16:07 +01:00

37 lines
779 B
Bash

#!/bin/sh
set -e
APP_DIR=/var/www/app
GIT_URL="https://oauth2:${GIT_TOKEN}@${BACKEND_GIT_REPO}"
if [ ! -d "$APP_DIR/.git" ]; then
git clone -b "${BACKEND_GIT_BRANCH:-main}" "$GIT_URL" "$APP_DIR"
else
cd "$APP_DIR"
git fetch origin
git reset --hard origin/"${BACKEND_GIT_BRANCH:-main}"
fi
cd "$APP_DIR"
if [ -f composer.json ]; then
composer update --no-interaction --prefer-dist --optimize-autoloader
fi
if [ ! -f .env ] && [ -f .env.example ]; then
cp .env.example .env
fi
if [ -f artisan ]; then
if ! grep -q "APP_KEY=base64:" .env 2>/dev/null; then
php artisan key:generate --ansi --force
fi
fi
php artisan migrate --force
chown -R www-data:www-data storage bootstrap/cache public
chmod -R 775 storage bootstrap/cache
chmod -R 755 public
exec "$@"