overmind-mcp 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,172 +0,0 @@
1
- version: '3.8'
2
-
3
- # ═══════════════════════════════════════════════════════════════════════════════
4
- # OverMind-MCP Docker Compose (Minimal Setup)
5
- # ═══════════════════════════════════════════════════════════════════════════════
6
- # Setup minimal pour OverMind-MCP qui RÉUTILISE votre PostgreSQL existant
7
- # Services: RabbitMQ (Message Broker) + Temporal (Workflow Orchestrator)
8
- #
9
- # Prérequis:
10
- # - Docker Desktop installé et démarré
11
- # - PostgreSQL + pgvector déjà en Docker (container: postgres-pgvector)
12
- # - Base de données 'overmind_memory' créée
13
- #
14
- # Usage:
15
- # docker-compose -f docker-compose.overmind.yml up -d
16
- # ═══════════════════════════════════════════════════════════════════════════════
17
-
18
- services:
19
- # ───────────────────────────────────────────────────────────────────────────────
20
- # RABBITMQ (Message Broker)
21
- # ───────────────────────────────────────────────────────────────────────────────
22
- # Gère les files d'attente de messages entre agents
23
- # Management UI: http://localhost:15672 (user: overmind, pass: overmind_secret_password)
24
- rabbitmq:
25
- image: rabbitmq:3.13-management
26
- container_name: overmind-rabbitmq
27
- hostname: overmind-rabbitmq
28
- ports:
29
- - "5672:5672" # AMQP protocol (pour OverMind)
30
- - "15672:15672" # Management UI (interface web)
31
- environment:
32
- # Credentials par défaut (À CHANGER en production !)
33
- RABBITMQ_DEFAULT_USER: overmind
34
- RABBITMQ_DEFAULT_PASS: overmind_secret_password_change_me
35
- # Logs configuration
36
- RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: -rabbit log_levels [{connection,error},{default,warning}]
37
- volumes:
38
- - rabbitmq_data:/var/lib/rabbitmq
39
- networks:
40
- - overmind-network
41
- healthcheck:
42
- test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
43
- interval: 30s
44
- timeout: 10s
45
- retries: 5
46
- start_period: 40s
47
- restart: unless-stopped
48
-
49
- # ───────────────────────────────────────────────────────────────────────────────
50
- # TEMPORAL (Workflow Orchestrator)
51
- # ───────────────────────────────────────────────────────────────────────────────
52
- # Gère les workflows long-running (OSINT, analyses continues)
53
- # Web UI: http://localhost:8088
54
- temporal:
55
- image: temporalio/auto-setup:1.24.0
56
- container_name: overmind-temporal
57
- hostname: overmind-temporal
58
- ports:
59
- - "7233:7233" # gRPC endpoint (pour OverMind)
60
- - "8233:8233" # Web UI (interface web)
61
- environment:
62
- # Configuration PostgreSQL (votre container existant)
63
- DB: postgres
64
- POSTGRES_SEEDS: host.docker.internal # IMPORTANT: Accès à Windows host
65
- POSTGRES_USER: postgres
66
- POSTGRES_PWD: postgres # ← À CHANGER avec votre vrai mot de passe
67
- POSTGRES_DB: temporal
68
- # Configuration Temporal
69
- TEMPERAL_ADDRESS: temporal:7233
70
- TEMPORAL_CLI_ADDRESS: temporal:7233
71
- SERVICES: frontend,history,matching,worker,web-ui
72
- networks:
73
- - overmind-network
74
- restart: unless-stopped
75
-
76
- # ───────────────────────────────────────────────────────────────────────────────
77
- # TEMPORAL WEB (UI Temporal)
78
- # ───────────────────────────────────────────────────────────────────────────────
79
- # Interface web pour visualiser les workflows
80
- # URL: http://localhost:8088
81
- temporal-web:
82
- image: temporalio/web:1.24.0
83
- container_name: overmind-temporal-web
84
- hostname: overmind-temporal-web
85
- ports:
86
- - "8088:8088"
87
- environment:
88
- TEMPORAL_GRPC_ENDPOINT: temporal:7233
89
- TEMPORAL_PERMIT_WRITE_API: true
90
- networks:
91
- - overmind-network
92
- depends_on:
93
- - temporal
94
- restart: unless-stopped
95
-
96
- # ───────────────────────────────────────────────────────────────────────────────
97
- # PROMETHEUS (Metrics Collection) - OPTIONNEL
98
- # ───────────────────────────────────────────────────────────────────────────────
99
- # Collecte les métriques d'OverMind (RAM, queues, tokens)
100
- # URL: http://localhost:9090
101
- #
102
- # Pour activer: Décommentez le service ci-dessous et le service grafana
103
- # ───────────────────────────────────────────────────────────────────────────────
104
- # prometheus:
105
- # image: prom/prometheus:v2.55.1
106
- # container_name: overmind-prometheus
107
- # hostname: overmind-prometheus
108
- # ports:
109
- # - "9090:9090"
110
- # volumes:
111
- # - ./config/prometheus.yml:/etc/prometheus/prometheus.yml:ro
112
- # - prometheus_data:/prometheus
113
- # command:
114
- # - '--config.file=/etc/prometheus/prometheus.yml'
115
- # - '--storage.tsdb.path=/prometheus'
116
- # - '--web.enable-lifecycle'
117
- # networks:
118
- # - overmind-network
119
- # restart: unless-stopped
120
-
121
- # ───────────────────────────────────────────────────────────────────────────────
122
- # GRAFANA (Dashboards) - OPTIONNEL
123
- # ───────────────────────────────────────────────────────────────────────────────
124
- # Visualise les métriques Prometheus
125
- # URL: http://localhost:3000 (user: admin, pass: grafana_password)
126
- #
127
- # Pour activer: Décommentez le service ci-dessous
128
- # ───────────────────────────────────────────────────────────────────────────────
129
- # grafana:
130
- # image: grafana/grafana:11.3.1
131
- # container_name: overmind-grafana
132
- # hostname: overmind-grafana
133
- # ports:
134
- # - "3000:3000"
135
- # environment:
136
- # GF_SECURITY_ADMIN_USER: admin
137
- # GF_SECURITY_ADMIN_PASSWORD: grafana_password_change_me
138
- # GF_INSTALL_PLUGINS: grafana-piechart-panel
139
- # GF_USERS_ALLOW_SIGN_UP: "false"
140
- # volumes:
141
- # - grafana_data:/var/lib/grafana
142
- # - ./config/grafana/provisioning:/etc/grafana/provisioning:ro
143
- # networks:
144
- # - overmind-network
145
- # depends_on:
146
- # - prometheus
147
- # restart: unless-stopped
148
-
149
- # ─────────────────────────────────────────────────────────────────────────────────
150
- # NETWORKS
151
- # ─────────────────────────────────────────────────────────────────────────────────
152
- networks:
153
- overmind-network:
154
- driver: bridge
155
- name: overmind-network
156
- ipam:
157
- config:
158
- - subnet: 172.20.0.0/16
159
-
160
- # ─────────────────────────────────────────────────────────────────────────────────
161
- # VOLUMES
162
- # ─────────────────────────────────────────────────────────────────────────────────
163
- volumes:
164
- rabbitmq_data:
165
- name: overmind-rabbitmq-data
166
- driver: local
167
- # prometheus_data:
168
- # name: overmind-prometheus-data
169
- # driver: local
170
- # grafana_data:
171
- # name: overmind-grafana-data
172
- # driver: local
File without changes
File without changes
File without changes