Files
xiaoxia-saas/infra/docker/deploy-staging.sh
T
Xiaoxia AI e6c750b670
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 25s
Deploy / Deploy Staging (push) Successful in 1s
fix(deploy): guard staging builds on business host
2026-06-24 22:54:55 +08:00

91 lines
2.6 KiB
Bash

#!/bin/sh
set -eu
HOST_PREFIX="${HOST_PREFIX-/host}"
ROOT_DIR="$HOST_PREFIX/var/lib/xiaoxia-saas-staging/repo"
COMPOSE_DIR="$ROOT_DIR/infra/docker"
ENV_FILE="$HOST_PREFIX/var/lib/xiaoxia-saas-staging/.env"
ensure_container_running() {
name="$1"
if ! docker inspect "$name" >/dev/null 2>&1; then
echo "❌ Required infrastructure container not found: $name"
echo " Run infra/docker/infra.yml first before deploying applications."
exit 1
fi
state="$(docker inspect -f '{{.State.Status}}' "$name")"
if [ "$state" != "running" ]; then
echo "❌ Required infrastructure container is not running: $name ($state)"
exit 1
fi
}
cd "$ROOT_DIR"
cp "$ENV_FILE" "$ROOT_DIR/.env"
mkdir -p "$ROOT_DIR/apps/web/public" "$HOST_PREFIX/var/lib/xiaoxia-saas-staging/generated"
[ -f "$ROOT_DIR/apps/web/public/.keep" ] || printf 'placeholder' > "$ROOT_DIR/apps/web/public/.keep"
ensure_container_running xiaoxia-postgres
ensure_container_running xiaoxia-redis
cd "$COMPOSE_DIR"
WEB_PORT="${WEB_PORT:-3001}"
export WEB_PORT
export DOCKER_BUILDKIT=0
export COMPOSE_DOCKER_CLI_BUILD=0
if [ "${REBUILD_BACKEND:-0}" = "1" ] || [ "${BUILD_WEB:-0}" = "1" ]; then
if [ "${ALLOW_STAGING_BUILDS:-false}" != "true" ]; then
echo "❌ Staging deploy must not build images on the business server."
echo " Build artifacts/images on the dedicated CI/build server, then deploy with REBUILD_BACKEND=0 BUILD_WEB=0."
exit 1
fi
fi
if [ "${REBUILD_BACKEND:-0}" = "1" ]; then
docker compose build --pull=false api
docker compose build --pull=false worker
fi
if [ "${BUILD_WEB:-0}" = "1" ]; then
docker compose build --pull=false web
fi
if [ "${RUN_MIGRATIONS:-0}" = "1" ]; then
docker compose run --rm --no-deps api sh -c '
cd /app
set +e
python - <<"PY"
import os
from sqlalchemy import create_engine, text
url = os.environ["DATABASE_URL"]
engine = create_engine(url)
with engine.begin() as conn:
has_version = conn.execute(
text("SELECT to_regclass(:table_name)"),
{"table_name": "public.alembic_version"},
).scalar() is not None
has_tables = conn.execute(
text(
"SELECT COUNT(*) FROM pg_tables "
"WHERE schemaname = :schema_name AND tablename != :version_table"
),
{"schema_name": "public", "version_table": "alembic_version"},
).scalar()
if has_tables and not has_version:
raise SystemExit(42)
PY
status=$?
set -e
if [ "$status" -eq 0 ]; then
alembic upgrade head
elif [ "$status" -eq 42 ]; then
alembic stamp head && alembic upgrade head
else
exit "$status"
fi
'
fi
docker compose up -d api worker web
docker compose ps