mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 18:49:39 +02:00
Remove all 6 Telegram bot services to focus on Matrix as the sole messaging platform for full UI/UX control and DSGVO compliance. Removed services: - telegram-nutriphi-bot - telegram-ollama-bot - telegram-project-doc-bot - telegram-stats-bot - telegram-todo-bot - telegram-zitare-bot Also: - Remove Telegram bot scripts from package.json - Remove telegram-stats-bot from docker-compose.macmini.yml - Disable Watchtower Telegram notifications - Remove Telegram devlog - Add comprehensive MATRIX_BOT_ARCHITECTURE.md documentation The Matrix-only approach provides: - Full control over user experience - Complete DSGVO compliance (all data on own servers) - No dependency on third-party platforms - Unified command patterns across all bots
74 lines
2 KiB
Markdown
74 lines
2 KiB
Markdown
# ADR-003: Infrastructure Audit & Port Schema
|
|
|
|
**Status:** Accepted
|
|
**Date:** 2026-01-31
|
|
**Author:** Till Schneider
|
|
**Category:** Infrastructure
|
|
|
|
## Context
|
|
|
|
Die aktuelle Docker-Compose-Konfiguration auf dem Mac Mini hat über die Zeit 52 Container angesammelt mit chaotischer Port-Verteilung, inkonsistenter Benennung und fragmentierten Volumes. Vor der Migration zu K8s ist ein Cleanup notwendig.
|
|
|
|
## Decision
|
|
|
|
### 1. Neues Port-Schema
|
|
|
|
| Range | Kategorie | Beispiele |
|
|
|-------|-----------|-----------|
|
|
| 3000-3099 | Core Services & Backends | 3001 auth, 3010 gateway, 3030+ backends |
|
|
| 4000-4099 | Matrix Stack | 4000 synapse, 401x bots, 4080 element |
|
|
| 5000-5099 | Web Frontends | 5000 dashboard, 501x app webs |
|
|
| 6000-6099 | Automation | 6000 n8n, 601x telegram |
|
|
| 8000-8099 | Monitoring UI | 8000 grafana, 8010 umami |
|
|
| 9000-9199 | Infra & Exporters | 9000 minio, 909x metrics |
|
|
| 11000+ | Native macOS | 11434 ollama |
|
|
|
|
### 2. Container-Naming
|
|
|
|
```
|
|
manacore-{category}-{service}
|
|
|
|
Categories: infra, core, app, matrix, mon, auto
|
|
```
|
|
|
|
### 3. Matrix-Bot Konsolidierung
|
|
|
|
**Vorher:** 10 separate Bot-Container
|
|
**Nachher:** 3 Bots (mana-bot unified, stats-bot, project-doc-bot)
|
|
|
|
**Einsparung:** 7 Container, ~1.4GB RAM
|
|
|
|
### 4. Volume-Naming
|
|
|
|
```
|
|
manacore-{service}-data
|
|
```
|
|
|
|
Matrix-Bot-Volumes werden zu einem konsolidiert: `manacore-matrix-bots-data`
|
|
|
|
## Consequences
|
|
|
|
### Positive
|
|
|
|
- Klare Port-Zuordnung erleichtert Debugging
|
|
- Konsistente Namen verbessern Übersicht
|
|
- Weniger Container = weniger Ressourcenverbrauch
|
|
- Vorbereitung für K8s-Migration
|
|
|
|
### Negative
|
|
|
|
- Einmaliger Migrationsaufwand
|
|
- Cloudflare Tunnel muss angepasst werden
|
|
- Matrix-Bot Code-Merge erforderlich
|
|
|
|
## Migration Steps
|
|
|
|
1. Port-Mapping dokumentieren (erledigt)
|
|
2. Matrix-Bots konsolidieren
|
|
3. docker-compose.yml refactoren
|
|
4. Cloudflare Tunnel anpassen
|
|
5. Services schrittweise migrieren
|
|
|
|
## Full Documentation
|
|
|
|
Siehe: `apps/manacore/apps/landing/src/content/blueprints/002-infrastructure-audit-improvements.md`
|