fix(infra): relocate mana-ai from 3066 to 3067 — port clash with news-ingester

news-ingester already owns 3066 (see docker-compose.macmini.yml:1620).
Moving mana-ai to 3067 — the next free slot in the 306x services block
(credits 3061, user 3062, subscriptions 3063, analytics 3064,
events 3065, news-ingester 3066, mana-ai 3067).

Updated: Dockerfile EXPOSE + HEALTHCHECK, config.ts default,
compose service/healthcheck/port mapping, webapp getManaAiUrl()
fallback, root CLAUDE.md service list, mana-ai/CLAUDE.md, and
COMPANION_BRAIN_ARCHITECTURE.md §20 file map.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-15 14:32:07 +02:00
parent 6acb044230
commit f0f5b7dcf6
7 changed files with 16 additions and 16 deletions

View file

@ -69,9 +69,9 @@ export function getManaAiUrl(): string {
if (browser && typeof window !== 'undefined') {
const injected = (window as unknown as { __PUBLIC_MANA_AI_URL__?: string })
.__PUBLIC_MANA_AI_URL__;
return injected || 'http://localhost:3066';
return injected || 'http://localhost:3067';
}
return process.env.PUBLIC_MANA_AI_URL || 'http://localhost:3066';
return process.env.PUBLIC_MANA_AI_URL || 'http://localhost:3067';
}
/**