feature: Elasticsearch CQRS Projection and Analytics Endpoints
This commit is contained in:
+21
-1
@@ -50,7 +50,27 @@ services:
|
||||
volumes:
|
||||
- kafka_data:/var/lib/kafka/data
|
||||
|
||||
elasticsearch:
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.0
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
# Security disabled for development — no TLS negotiation overhead, no keystore setup.
|
||||
# A production deployment would enable xpack.security and use HTTPS.
|
||||
- xpack.security.enabled=false
|
||||
- ES_JAVA_OPTS=-Xms512m -Xmx512m
|
||||
- cluster.name=vigilcare-dev
|
||||
ports:
|
||||
- "9200:9200"
|
||||
volumes:
|
||||
- es_data:/usr/share/elasticsearch/data
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9200/_cluster/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
volumes:
|
||||
pg_data:
|
||||
seq_data:
|
||||
kafka_data:
|
||||
kafka_data:
|
||||
es_data:
|
||||
Reference in New Issue
Block a user