Spaces:
Sleeping
Sleeping
File size: 529 Bytes
62516b8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: rtm-class-ai-hf
restart: unless-stopped
ports:
- "7860:7860"
env_file:
- .env
environment:
PORT: 7860
REDIS_URL: redis://127.0.0.1:6379/0
CHROMA_PERSIST_DIR: /app/.chroma
LKPD_PDF_DIR: /app/.generated/lkpd
APP_PUBLIC_BASE_URL: http://localhost:7860
volumes:
- chroma_data:/app/.chroma
- generated_data:/app/.generated
volumes:
chroma_data:
generated_data:
|