Skip to content

Commit f3aa1c3

Browse files
committed
fix: step 6 should only start infrastructure services
- Explicitly list infrastructure services in docker compose up command - Exclude frontend, backend, and nginx from Step 6 startup - Prevents frontend build failure when only infrastructure is needed - Frontend/backend are started separately in Steps 11-12 Fixes: frontend service build failure in Step 6 when npm ci fails Infrastructure services: timescaledb, redis, kafka, etcd, minio, milvus
1 parent ccc0055 commit f3aa1c3

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

notebooks/setup/complete_setup_guide.ipynb

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2513,6 +2513,17 @@
25132513
" print(\"\\n5️⃣ Starting infrastructure services...\")\n",
25142514
" print(\" This may take a few minutes on first run (downloading images)...\")\n",
25152515
" \n",
2516+
" # Start only infrastructure services (exclude frontend, backend, nginx)\n",
2517+
" # These are started separately in Steps 11-12\n",
2518+
" infrastructure_services = [\n",
2519+
" \"timescaledb\",\n",
2520+
" \"redis\",\n",
2521+
" \"kafka\",\n",
2522+
" \"etcd\",\n",
2523+
" \"minio\",\n",
2524+
" \"milvus\"\n",
2525+
" ]\n",
2526+
" \n",
25162527
" # Prepare environment for subprocess (inherit current + .env vars)\n",
25172528
" subprocess_env = os.environ.copy()\n",
25182529
" subprocess_env.update(env_vars)\n",
@@ -2521,7 +2532,7 @@
25212532
" compose_cmd + [\n",
25222533
" \"-f\", str(compose_file),\n",
25232534
" \"up\", \"-d\"\n",
2524-
" ],\n",
2535+
" ] + infrastructure_services,\n",
25252536
" cwd=str(project_root),\n",
25262537
" env=subprocess_env,\n",
25272538
" capture_output=True,\n",

0 commit comments

Comments
 (0)