Kafka
-
kafka docker-compose 로 가동하기Linux 2023. 10. 25. 14:58
ubuntu 22.04 / 2023-10-25 일 테스트되었다. 1. docker 설치 https://haengsin.tistory.com/128 2. docker 일반 계정으로 가동하기 https://eventhorizon.tistory.com/149 3. docker-compose.yml 작성하기 services: zookeeper: image: bitnami/zookeeper:latest hostname: zoo0 ports: - "2181:2181" environment: ALLOW_ANONYMOUS_LOGIN: "yes" restart: unless-stopped kafka: image: bitnami/kafka:latest hostname: kafka0 ports: - "9092:9092" e..