File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -418,6 +418,25 @@ docker run -d \
418418 -c 'ollama serve & sleep 5 && ollama pull daynice/kure-v1:567m && wait'
419419
420420echo "${ var . github_access_token_1 } " | docker login ghcr.io -u ${ var . github_access_token_1_owner } --password-stdin
421+ # zookeeper
422+ docker run -d \
423+ --name kafka \
424+ --network common \
425+ -p 9092:9092 \
426+ -e KAFKA_BROKER_ID=1 \
427+ -e KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181 \
428+ -e KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT \
429+ -e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092 \
430+ -e KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1 \
431+ confluentinc/cp-kafka:7.6.0
432+
433+ # kafka 설치
434+ docker run -d \
435+ --name zookeeper \
436+ --network common \
437+ -p 2181:2181 \
438+ -e ALLOW_ANONYMOUS_LOGIN=yes \
439+ bitnami/zookeeper:latest
421440
422441END_OF_FILE
423442}
You can’t perform that action at this time.
0 commit comments