Fix deployment runtime to avoid 502 on hosted server
فشلت بعض الفحوصات
Deploy Backend / deploy (push) Has been cancelled

هذا الالتزام موجود في:
Abdul Kareem
2026-02-17 00:06:51 +03:00
الأصل 2a7c74bceb
التزام 60bbf14ec7
3 ملفات معدلة مع 4 إضافات و3 حذوفات

عرض الملف

@@ -53,7 +53,7 @@ RUN cp .env.example .env || true \
COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
EXPOSE 9000
EXPOSE 8000
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["php-fpm", "-F"]
CMD ["sh", "-c", "php artisan serve --host=0.0.0.0 --port=${PORT:-8000}"]

عرض الملف

@@ -18,6 +18,7 @@ services:
DB_USERNAME: ${DB_USERNAME:-postgres}
DB_PASSWORD: ${DB_PASSWORD:-secret}
RUN_MIGRATIONS: "true"
command: ["php-fpm", "-F"]
depends_on:
- db
volumes:

عرض الملف

@@ -11,7 +11,7 @@ php artisan key:generate --force --no-interaction || true
php artisan storage:link || true
if [ "${RUN_MIGRATIONS}" = "true" ]; then
php artisan migrate --force --no-interaction
php artisan migrate --force --no-interaction || true
fi
php artisan config:cache || true