규칙 적용 재추적

This commit is contained in:
kyy
2025-10-30 10:32:31 +09:00
parent bea690d3f1
commit 4062a50c80
43 changed files with 2105 additions and 0 deletions

45
docker-compose.yml Normal file
View File

@@ -0,0 +1,45 @@
services:
llm_macro:
build:
context: .
image: llm_macro
container_name: llm_macro_api
volumes:
- ./:/workspace
ports:
- "8889:8889"
env_file:
- .env
environment:
- TZ=Asia/Seoul
stdin_open: true
restart: always
tty: true
networks:
- llm_macro_net
llm_macro_redis:
image: redis:7-alpine
container_name: llm_macro_redis
command:
[
"redis-server",
"--maxmemory",
"256mb",
"--maxmemory-policy",
"allkeys-lru",
]
ports:
- "6666:6379"
restart: always
networks:
- llm_macro_net
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
networks:
llm_macro_net:
driver: bridge