proyecto generalizado

This commit is contained in:
2026-05-23 16:44:45 +02:00
parent 2f990ea636
commit b4964261ec
94 changed files with 1032 additions and 320 deletions
+8 -8
View File
@@ -3,8 +3,8 @@ services:
build:
context: .
dockerfile: core/Dockerfile
image: agentforge-core:dev
container_name: agentforge-core
image: forja-core:dev
container_name: forja-core
ports:
- "8000:8000"
env_file:
@@ -14,8 +14,8 @@ services:
AGENTS_DIR: /app/agents
POLICIES_DIR: /app/policies
volumes:
- ./agents:/app/agents:ro
- ./policies:/app/policies:ro
- ./agents:/app/agents:rw
- ./policies:/app/policies:rw
- ./data:/app/data
healthcheck:
test: ["CMD", "curl", "-fsS", "http://localhost:8000/health"]
@@ -29,15 +29,15 @@ services:
build:
context: .
dockerfile: dashboard/Dockerfile
image: agentforge-dashboard:dev
container_name: agentforge-dashboard
image: forja-dashboard:dev
container_name: forja-dashboard
depends_on:
core:
condition: service_healthy
ports:
- "8501:8501"
environment:
AGENTFORGE_CORE_URL: http://core:8000
FORJA_CORE_URL: http://core:8000
volumes:
- ./agents:/app/agents:ro # para que el dashboard lea los escenarios
- ./agents:/app/agents:rw # rw para editores gráficos + escenarios
restart: unless-stopped