services: chroma: image: chromadb/chroma:latest expose: - '8000' environment: - CHROMA_SERVER_HOST=0.0.0.0 - CHROMA_SERVER_HTTP_PORT=8000 volumes: - chroma_data:/chroma/chroma restart: unless-stopped nginx: image: nginx:alpine ports: - '8666:8666' volumes: - ./nginx.conf:/etc/nginx/nginx.conf:ro depends_on: - chroma restart: unless-stopped volumes: chroma_data: