services: legacy-tim-mcp: image: python:3.12-slim working_dir: /app volumes: - ./mcp_servers/legacy_tim_mcp:/app env_file: - ./mcp_servers/legacy_tim_mcp/.env.example command: bash -lc "pip install -r requirements.txt && uvicorn main:app --host 0.0.0.0 --port 8100" ports: - "8100:8100" agent-contas: image: python:3.12-slim working_dir: /app volumes: - .:/app # Monte o framework local se quiser usar pip install -e: # - /mnt/d/MSI Projects/agent_framework_oci/agent_framework:/framework/agent_framework env_file: - ./.env.example environment: MCP_SERVERS_CONFIG_PATH: ./config/mcp_servers.docker.yaml command: bash -lc "pip install -r requirements.txt && uvicorn app.main:app --host 0.0.0.0 --port 8000" ports: - "8000:8000" depends_on: - legacy-tim-mcp