File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ dependencies {
6262 implementation ' org.springframework.session:spring-session-data-redis'
6363
6464 // Logging & Monitoring (로깅/모니터링)
65- implementation ' io.sentry:sentry-spring-boot-starter:7.16 .0'
66- implementation ' io.sentry:sentry-logback:7.16 .0'
65+ implementation ' io.sentry:sentry-spring-boot-starter:7.18 .0'
66+ implementation ' io.sentry:sentry-logback:7.18 .0'
6767
6868 // Development Tools (개발 도구)
6969 compileOnly ' org.projectlombok:lombok'
Original file line number Diff line number Diff line change @@ -409,6 +409,7 @@ docker run -d \
409409 --network common \
410410 -p 11434:11434 \
411411 -v ollama-data:/root/.ollama \
412+ --memory 2g \
412413 --entrypoint /bin/sh \
413414 --health-cmd 'curl -f http://localhost:11434/api/version || exit 1' \
414415 --health-interval 10s \
@@ -418,7 +419,15 @@ docker run -d \
418419 -c 'ollama serve & sleep 5 && ollama pull daynice/kure-v1:567m && wait'
419420
420421echo "${ var . github_access_token_1 } " | docker login ghcr.io -u ${ var . github_access_token_1_owner } --password-stdin
421- # zookeeper
422+ # zookeeper 설치
423+ docker run -d \
424+ --name zookeeper \
425+ --network common \
426+ -p 2181:2181 \
427+ -e ALLOW_ANONYMOUS_LOGIN=yes \
428+ bitnami/zookeeper:latest
429+
430+ # kafka
422431docker run -d \
423432 --name kafka \
424433 --network common \
@@ -430,13 +439,7 @@ docker run -d \
430439 -e KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1 \
431440 confluentinc/cp-kafka:7.6.0
432441
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
442+
440443
441444END_OF_FILE
442445}
You can’t perform that action at this time.
0 commit comments