pycache 추가

This commit is contained in:
kyy
2025-10-30 10:31:18 +09:00
parent 2bb5879169
commit bea690d3f1
88 changed files with 0 additions and 2104 deletions

View File

@@ -1,45 +0,0 @@
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