mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 14:04:19 +00:00
21 lines
458 B
YAML
21 lines
458 B
YAML
services:
|
|
mcp_gateway:
|
|
build:
|
|
context: ../..
|
|
dockerfile: apps/mcp_gateway/Dockerfile
|
|
ports:
|
|
- "8300:8300"
|
|
depends_on:
|
|
- mock_telecom_mcp
|
|
|
|
mock_telecom_mcp:
|
|
image: python:3.12-slim
|
|
working_dir: /app
|
|
command: >
|
|
sh -c "pip install -r requirements.txt &&
|
|
uvicorn app:app --host 0.0.0.0 --port 8001"
|
|
volumes:
|
|
- ../../mcp/servers/mock_telecom_mcp:/app
|
|
ports:
|
|
- "8001:8001"
|