Skip to content

Instantly share code, notes, and snippets.

View stephentth's full-sized avatar
🔭
Exploring

stephentth

🔭
Exploring
View GitHub Profile
@stephentth
stephentth / dev-kafka-docker-compose.yaml
Created March 26, 2024 04:26
Local development docker compose for Kafka and Kafdrop (no Zookeeper)
# for local development
version: '3'
services:
broker:
platform: linux/amd64
# https://github.com/bitnami/bitnami-docker-kafka
image: bitnami/kafka:3.7
restart: always
ports:
- "9092:9092"