diff --git a/entrypoint.sh b/entrypoint.sh index 54265f5..5f58356 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ fi # Run DB migrations only if RUN_MIGRATIONS=true (blog service only) if [[ "${RUN_MIGRATIONS:-}" == "true" ]]; then echo "Running Alembic migrations..." - alembic upgrade head + alembic -c shared_lib/alembic.ini upgrade head fi # Clear Redis page cache on deploy