Files
server-core/serverrun/start-compute.sh
T
Pine a813a139dc feat: serverrun/serverdata 全服务栈(参考 PineSoundServer)
- serverrun/:start-all.sh 一键编排 + start-compute/start-emqx + envcopy/encrypt-certs
- 服务编排:core(Dockerfile+compose)、compute-engine(build.sh+compose)、mysql、redis、mqtt(EMQX)
- serverdata/:新增 compute-data/compute-logs/mysql-data/redis-data/emqx-data/emqx-log
- 全服务仅 loopback 暴露,算力引擎 :3000 经 core 代理
2026-08-24 01:00:52 +08:00

12 lines
364 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
# 算力调度服务(compute-engine / new-api)启动
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/compute-engine"
echo "构建算力引擎镜像..."
bash build.sh
echo "启动算力引擎(仅 loopback :3000..."
docker compose up -d
echo "算力引擎就绪:http://127.0.0.1:3000(经 core 算力服务代理,不对外直连)"