fix: force frontend proxy to internal backend

This commit is contained in:
2569718930@qq.com
2026-06-03 02:13:02 +08:00
parent a440f3d2b5
commit 92307a9f97
3 changed files with 21 additions and 1 deletions
+1
View File
@@ -73,6 +73,7 @@ compose_up_retry() {
}
export IMAGE_TAG="$NEW_TAG"
export POLYWEATHER_API_BASE_URL="${POLYWEATHER_FRONTEND_INTERNAL_API_BASE_URL:-http://polyweather_web:8000}"
pull_ok=0
for pull_attempt in $(seq 1 6); do
docker compose pull && pull_ok=1 && break