mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-09 01:49:37 -06:00
- Introduced Kafka and Zookeeper services in a new docker-compose file for better message handling. - Added frontend service to both development and production docker-compose files for improved UI management. - Updated evolution-manager-v2 submodule to the latest commit. - Updated CHANGELOG for version 2.3.5 release.
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
version: '3.3'
|
|
|
|
services:
|
|
zookeeper:
|
|
container_name: zookeeper
|
|
image: confluentinc/cp-zookeeper:7.5.0
|
|
environment:
|
|
- ZOOKEEPER_CLIENT_PORT=2181
|
|
- ZOOKEEPER_TICK_TIME=2000
|
|
- ZOOKEEPER_SYNC_LIMIT=2
|
|
volumes:
|
|
- zookeeper_data:/var/lib/zookeeper/
|
|
ports:
|
|
- 2181:2181
|
|
|
|
kafka:
|
|
container_name: kafka
|
|
image: confluentinc/cp-kafka:7.5.0
|
|
depends_on:
|
|
- zookeeper
|
|
environment:
|
|
- KAFKA_BROKER_ID=1
|
|
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
|
|
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT,OUTSIDE:PLAINTEXT
|
|
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092,OUTSIDE://host.docker.internal:9094
|
|
- KAFKA_INTER_BROKER_LISTENER_NAME=PLAINTEXT
|
|
- KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1
|
|
- KAFKA_TRANSACTION_STATE_LOG_MIN_ISR=1
|
|
- KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR=1
|
|
- KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS=0
|
|
- KAFKA_AUTO_CREATE_TOPICS_ENABLE=true
|
|
- KAFKA_LOG_RETENTION_HOURS=168
|
|
- KAFKA_LOG_SEGMENT_BYTES=1073741824
|
|
- KAFKA_LOG_RETENTION_CHECK_INTERVAL_MS=300000
|
|
- KAFKA_COMPRESSION_TYPE=gzip
|
|
ports:
|
|
- 29092:29092
|
|
- 9092:9092
|
|
- 9094:9094
|
|
volumes:
|
|
- kafka_data:/var/lib/kafka/data
|
|
|
|
volumes:
|
|
zookeeper_data:
|
|
kafka_data:
|
|
|
|
|
|
networks:
|
|
evolution-net:
|
|
name: evolution-net
|
|
driver: bridge |