You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

version: '3.8'
services:
kafka:
image: confluentinc/cp-kafka:latest
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CREATE_TOPICS: "request_llm_topic:3:1,response_llm_topic:3:1,add_point_cloud_topic:3:1,add_classified_objects_topic:3:1" # Формат: Топик:Кол-во_партиций:Фактор_репликации
ports:
- "9092:9092"
depends_on:
- zookeeper
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ports:
- "2181:2181"
producer:
build:
context: .
dockerfile: producer.Dockerfile
environment:
- KAFKA_BOOTSTRAP_SERVERS=localhost:9092
depends_on:
kafka:
condition: service_healthy
consumer:
build:
context: .
dockerfile: consumer.Dockerfile
environment:
- KAFKA_BOOTSTRAP_SERVERS=localhost:9092
ports:
- "7781:8000"
depends_on:
kafka:
condition: service_healthy
processor:
build:
context: .
dockerfile: processor.Dockerfile
environment:
- KAFKA_BOOTSTRAP_SERVERS=localhost:9092
depends_on:
kafka:
condition: service_healthy