feat: fix dockerfile
CI / 🧪 Tests Laravel (push) Successful in 1m55s
CI / 🐳 Build & Push Image (push) Failing after 6s

This commit is contained in:
2026-07-16 15:44:03 +02:00
parent 5cf0510aa5
commit edb7f6d2a1
4 changed files with 208 additions and 63 deletions
+3 -3
View File
@@ -35,12 +35,12 @@ jobs:
cd /data/stacks/daily-meal-api
echo "Pull nouvelle image"
docker compose pull
docker compose -f docker-compose.prod.yml pull
echo "Redémarrage"
docker compose up -d
docker compose -f docker-compose.prod.yml up -d
echo "Migration Laravel"
docker compose exec -T app php artisan migrate --force
docker compose -f docker-compose.prod.yml exec -T app php artisan migrate --force
EOF