Files
microdao-daarion/docker-compose.staging.override.yml
Apple ef3473db21 snapshot: NODE1 production state 2026-02-09
Complete snapshot of /opt/microdao-daarion/ from NODE1 (144.76.224.179).
This represents the actual running production code that has diverged
significantly from the previous main branch.

Key changes from old main:
- Gateway (http_api.py): expanded from ~40KB to 164KB with full agent support
- Router: new /v1/agents/{id}/infer endpoint with vision + DeepSeek routing
- Behavior Policy: SOWA v2.2 (3-level: FULL/ACK/SILENT)
- Agent Registry: config/agent_registry.yml as single source of truth
- 13 agents configured (was 3)
- Memory service integration
- CrewAI teams and roles

Excluded from snapshot: venv/, .env, data/, backups, .tgz archives

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-09 08:46:46 -08:00

157 lines
3.6 KiB
YAML

services:
router:
container_name: dagi-staging-router
ports: []
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: &id001
com.daarion.env: staging
gateway:
container_name: dagi-staging-gateway
ports: []
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: *id001
swapper-service:
container_name: dagi-staging-swapper
ports: []
networks:
- dagi-staging-network
volumes:
- ./services/swapper-service/config/swapper_config_node1.yaml:/app/config/swapper_config.yaml:ro
- ./logs:/app/logs
- swapper-hf-cache-staging:/root/.cache/huggingface
env_file:
- ./.env.staging
labels: *id001
crawl4ai:
container_name: dagi-staging-crawl4ai
ports: []
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: *id001
vision-encoder:
container_name: dagi-staging-vision-encoder
ports: []
networks:
- dagi-staging-network
volumes:
- ./logs:/app/logs
- vision-model-cache-staging:/root/.cache/clip
env_file:
- ./.env.staging
labels: *id001
crewai-service:
container_name: dagi-staging-crewai
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: *id001
crewai-worker:
container_name: dagi-staging-crewai-worker
ports: []
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: *id001
memory-service:
container_name: dagi-staging-memory
expose:
- '8000'
networks:
- dagi-staging-network
env_file:
- ./.env.staging
labels: *id001
qdrant:
container_name: dagi-staging-qdrant
networks:
dagi-staging-network:
aliases:
- qdrant
- dagi-qdrant-node1
volumes:
- qdrant-data-staging:/qdrant/storage
labels: *id001
neo4j:
container_name: dagi-staging-neo4j
networks:
dagi-staging-network:
aliases:
- neo4j
- dagi-neo4j-node1
volumes:
- neo4j-data-staging:/data
- neo4j-logs-staging:/logs
labels: *id001
redis:
container_name: dagi-staging-redis
networks:
dagi-staging-network:
aliases:
- redis
- dagi-redis-node1
volumes:
- redis-data-staging:/data
labels: *id001
dagi-postgres:
image: postgres:15-alpine
container_name: dagi-staging-postgres
environment:
POSTGRES_DB: daarion_main
POSTGRES_USER: daarion
POSTGRES_PASSWORD: DaarionDB2026!
volumes:
- postgres-data-staging:/var/lib/postgresql/data
networks:
dagi-staging-network:
aliases:
- dagi-postgres
- postgres
labels: *id001
nats:
image: nats:latest
container_name: dagi-staging-nats
command:
- -c
- /etc/nats/nats.conf
volumes:
- ./nats/nats.conf:/etc/nats/nats.conf:ro
- nats-data-staging:/data
networks:
- dagi-staging-network
labels: *id001
control-plane:
image: control-plane:latest
container_name: dagi-staging-control-plane
environment:
JWT_SECRET: ${JWT_SECRET}
SERVICE_ID: control-plane
SERVICE_ROLE: controlplane
SERVICE_AUD: microdao-internal
SERVICE_ISS: microdao
env_file:
- ./.env.staging
networks:
- dagi-staging-network
labels: *id001
volumes:
qdrant-data-staging: null
neo4j-data-staging: null
neo4j-logs-staging: null
redis-data-staging: null
postgres-data-staging: null
nats-data-staging: null
vision-model-cache-staging: null
swapper-hf-cache-staging: null
networks:
dagi-staging-network: null