version: '3.7' services: api: build: ./services/api command: uvicorn api.main:api --reload --workers 1 --host 0.0.0.0 --port 8000 volumes: - ./services/api/:/opt/fast_api/ ports: - 8002:8000