mirror of
https://github.com/hoshikawa2/first_contas.git
synced 2026-07-09 10:14:20 +00:00
first commit
This commit is contained in:
28
docker-compose.yml
Normal file
28
docker-compose.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
Reference in New Issue
Block a user