Skip to content

Commit

Permalink
add metamodel to docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
hknots committed Oct 8, 2024
1 parent 123c3d8 commit ea30141
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000

kafka:
image: confluentinc/cp-kafka:latest
networks:
Expand All @@ -22,6 +23,7 @@ services:
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1

kafdrop:
image: obsidiandynamics/kafdrop:latest
networks:
Expand All @@ -32,6 +34,16 @@ services:
- 19000:9000
environment:
KAFKA_BROKERCONNECT: kafka:29092

metamodel:
image: ghcr.io/fintlabs/fint-core-consumer-metamodel:latest
networks:
- broker-kafka
depends_on:
- kafka
ports:
- 8082:8080

networks:
broker-kafka:
driver: bridge
driver: bridge

0 comments on commit ea30141

Please sign in to comment.