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