Fix production deployment for public site routing
Build & Push / Build & Push Docker Image (push) Failing after 3m35s

- pass `NEXT_PUBLIC_CARPLACE_URL` into the production Docker build
- keep `NEXT_PUBLIC_STOREFRONT_URL` as a backward-compatible fallback
- run the production deploy script from the Gitea workflow after building
- include `homepage` in production deploy, pull, and health-check service lists
- allow deploy to use a release image already built locally on the VPS
This commit is contained in:
root
2026-07-04 17:08:47 -04:00
parent a5b6c559ea
commit f4ea01e9de
4 changed files with 58 additions and 5 deletions
+2 -1
View File
@@ -26,8 +26,9 @@ echo "Running database migrations"
run_prod_migrations
echo "Starting application services"
prod_compose up -d api carplace dashboard admin
prod_compose up -d api homepage carplace dashboard admin
wait_for_healthy api 180
wait_for_healthy homepage 180
wait_for_healthy carplace 180
wait_for_healthy dashboard 180
wait_for_healthy admin 180