perf: use responsive next/image for mdx images
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 37s
Build & Deploy / 🧪 QA (push) Successful in 1m42s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled

This commit is contained in:
2026-06-22 21:20:16 +02:00
parent 8d4f085c58
commit 30a177663c
18 changed files with 24970 additions and 19200 deletions

View File

@@ -20,14 +20,14 @@ docker volume create klz_db_data 2>/dev/null || true
# 2. Start infra services (DB, CMS, Gatekeeper)
echo "📦 Starting infrastructure services..."
# Using --remove-orphans to ensure a clean state
docker-compose up -d --remove-orphans etib-db etib-gatekeeper
docker compose up -d --remove-orphans etib-db etib-gatekeeper
# 3. Build and Start etib-app in Production Mode
echo "🏗️ Building and starting etib-app (Production)..."
# We bypass the dev override by explicitly using the base compose file
NEXT_PUBLIC_BASE_URL=$NEXT_URL \
NEXT_PUBLIC_CI=true \
docker-compose -f docker-compose.yml up -d --build etib-app
docker compose -f docker-compose.yml up -d --build etib-app
# 4. Wait for application to be ready
echo "⏳ Waiting for application to be healthy..."