version: '3.8' services: mcp-bioconductor-annotate: build: . image: mcp-bioconductor-annotate:latest container_name: mcp-bioconductor-annotate ports: - "8000:8000" environment: - MCP_SERVER_NAME=bioconductor-annotate volumes: - ./workspace:/app/workspace - ./output:/app/output restart: unless-stopped healthcheck: test: ["CMD", "python", "-c", "import sys; sys.exit(0)"] interval: 30s timeout: 10s retries: 3 start_period: 5s