Skip to content

Commit 2e4c22d

Browse files
authored
Kafka container 이미지 수정 및 포트 겹치는 이슈 제거 (#9)
* bugfix: *_compose.yml 파일에서 포트 겹치는 이슈 제거 * bugfix: *_compose.yml 파일에서 bitnami legacy로 변경 * bugfix: *_compose.yml 파일에서 포트 겹치는 이슈 제거
1 parent 4759cf9 commit 2e4c22d

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

docker/infra-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ services:
6060
retries: 10
6161

6262
kafka:
63-
image: bitnami/kafka:3.5.1
63+
image: bitnamilegacy/kafka:3.5.1
6464
container_name: kafka
6565
ports:
6666
- "9092:9092" # 카프카 브로커 PORT
@@ -95,7 +95,7 @@ services:
9595
kafka:
9696
condition: service_healthy
9797
ports:
98-
- "9090:8080"
98+
- "9099:8080"
9999
environment:
100100
KAFKA_CLUSTERS_0_NAME: local # kafka-ui 에서 보이는 클러스터명
101101
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092 # kafka-ui 가 연겷할 브로커 주소

docker/monitoring-compose.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@ services:
1515
- ./grafana/provisioning:/etc/grafana/provisioning
1616
environment:
1717
- GF_SECURITY_ADMIN_USER=admin
18-
- GF_SECURITY_ADMIN_PASSWORD=admin
18+
- GF_SECURITY_ADMIN_PASSWORD=admin
19+
20+
networks:
21+
default:
22+
driver: bridge

0 commit comments

Comments
 (0)