raven-ai / docker-compose.yml
bclermo's picture
Upload folder using huggingface_hub
8cc6ebc verified
Raw
History Blame Contribute Delete
275 Bytes
version: '3.8'
services:
api:
build: .
ports:
- "8000:8000"
environment:
- RAVEN_ENV=development
- RAVEN_LOG_LEVEL=debug
volumes:
- ./raven_ai:/app/raven_ai
command: uvicorn raven_ai.main:app --reload --host 0.0.0.0 --port 8000