Updated container name

This commit is contained in:
kyy
2025-10-30 10:14:12 +09:00
parent 861f01144d
commit ab68542448
3 changed files with 9 additions and 9 deletions

View File

@@ -1,9 +1,9 @@
services:
llm_gateway_macro:
llm_macro:
build:
context: .
image: llm_gateway_macro
container_name: llm_gateway_macro_8889
image: llm_macro
container_name: llm_macro_api
volumes:
- ./:/workspace
ports:
@@ -16,11 +16,11 @@ services:
restart: always
tty: true
networks:
- llm_gateway_macro_net
- llm_macro_net
llm_gateway_macro_redis:
llm_macro_redis:
image: redis:7-alpine
container_name: llm_gateway_macro_redis
container_name: llm_macro_redis
command:
[
"redis-server",
@@ -33,7 +33,7 @@ services:
- "6666:6379"
restart: always
networks:
- llm_gateway_macro_net
- llm_macro_net
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
@@ -41,5 +41,5 @@ services:
retries: 5
networks:
llm_gateway_macro_net:
llm_macro_net:
driver: bridge

View File

@@ -11,6 +11,6 @@ D6C_PROMPT_PATH = STATIC_DIR / "prompt" / "d6c_test_prompt_eng.txt"
STRUCTURED_SCHEMA_PATH = STATIC_DIR / "structured_schema.json"
# llm_gateway 서비스 Redis 설정
PGN_REDIS_HOST = "llm_gateway_macro_redis"
PGN_REDIS_HOST = "llm_macro_redis"
PGN_REDIS_PORT = 6379
PGN_REDIS_DB = 2