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: services:
llm_gateway_macro: llm_macro:
build: build:
context: . context: .
image: llm_gateway_macro image: llm_macro
container_name: llm_gateway_macro_8889 container_name: llm_macro_api
volumes: volumes:
- ./:/workspace - ./:/workspace
ports: ports:
@@ -16,11 +16,11 @@ services:
restart: always restart: always
tty: true tty: true
networks: networks:
- llm_gateway_macro_net - llm_macro_net
llm_gateway_macro_redis: llm_macro_redis:
image: redis:7-alpine image: redis:7-alpine
container_name: llm_gateway_macro_redis container_name: llm_macro_redis
command: command:
[ [
"redis-server", "redis-server",
@@ -33,7 +33,7 @@ services:
- "6666:6379" - "6666:6379"
restart: always restart: always
networks: networks:
- llm_gateway_macro_net - llm_macro_net
healthcheck: healthcheck:
test: ["CMD", "redis-cli", "ping"] test: ["CMD", "redis-cli", "ping"]
interval: 10s interval: 10s
@@ -41,5 +41,5 @@ services:
retries: 5 retries: 5
networks: networks:
llm_gateway_macro_net: llm_macro_net:
driver: bridge 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" STRUCTURED_SCHEMA_PATH = STATIC_DIR / "structured_schema.json"
# llm_gateway 서비스 Redis 설정 # llm_gateway 서비스 Redis 설정
PGN_REDIS_HOST = "llm_gateway_macro_redis" PGN_REDIS_HOST = "llm_macro_redis"
PGN_REDIS_PORT = 6379 PGN_REDIS_PORT = 6379
PGN_REDIS_DB = 2 PGN_REDIS_DB = 2