Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ TAURUS_AQUILA_TOKEN=taurus
DRACO_REST_AQUILA_TOKEN=draco-rest
DRACO_CRON_AQUILA_TOKEN=draco-cron

AQUILA_GRPC_CONNECT_TIMEOUT_SECS=2
AQUILA_GRPC_REQUEST_TIMEOUT_SECS=10
SAGITTARIUS_UNARY_RPC_TIMEOUT_SECS=10

# Active services
# Available services: ide, runtime, ide_velorum (AI orchestrator)
COMPOSE_PROFILES=ide,runtime,ide_velorum
Expand Down
9 changes: 8 additions & 1 deletion docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ services:
condition: service_completed_successfully
restart: unless-stopped
environment:
SECURITY_TOKEN: $VELORUM_JWT_SECRET
SECURITY_TOKEN: ${VELORUM_JWT_SECRET}
volumes:
- generated-configs:/tmp/generated-configs:ro
- ./velorum.few_shots_external.configuration.json:/velorum/few_shots_external.configuration.json:ro
Expand Down Expand Up @@ -180,6 +180,7 @@ services:
GRPC_HOST: 0.0.0.0
SAGITTARIUS_URL: "${AQUILA_SAGITTARIUS_URL}"
RUNTIME_TOKEN: "${AQUILA_SAGITTARIUS_TOKEN}"
SAGITTARIUS_UNARY_RPC_TIMEOUT_SECS: "${SAGITTARIUS_UNARY_RPC_TIMEOUT_SECS}"
volumes:
- generated-configs:/tmp/generated-configs:ro
entrypoint: |
Expand All @@ -202,6 +203,8 @@ services:
NATS_URL: nats://nats:4222
DEFINITION_PATH: '/definitions'
AQUILA_TOKEN: "${TAURUS_AQUILA_TOKEN}"
AQUILA_GRPC_CONNECT_TIMEOUT_SECS: "${AQUILA_GRPC_CONNECT_TIMEOUT_SECS}"
AQUILA_GRPC_REQUEST_TIMEOUT_SECS: "${AQUILA_GRPC_REQUEST_TIMEOUT_SECS}"
restart: unless-stopped
profiles:
- runtime
Expand All @@ -221,6 +224,8 @@ services:
EXTERNAL_HTTP_SERVER_PORT: "${DRACO_REST_PORT}"
EXTERNAL_HTTP_SERVER_HOST: "${DRACO_REST_HOST}"
AQUILA_TOKEN: "${DRACO_REST_AQUILA_TOKEN}"
AQUILA_GRPC_CONNECT_TIMEOUT_SECS: "${AQUILA_GRPC_CONNECT_TIMEOUT_SECS}"
AQUILA_GRPC_REQUEST_TIMEOUT_SECS: "${AQUILA_GRPC_REQUEST_TIMEOUT_SECS}"
ports:
- "${DRACO_REST_PORT}:8084"
restart: unless-stopped
Expand All @@ -238,6 +243,8 @@ services:
NATS_BUCKET: 'flow_store'
DEFINITION_PATH: '/definitions'
AQUILA_TOKEN: "${DRACO_CRON_AQUILA_TOKEN}"
AQUILA_GRPC_CONNECT_TIMEOUT_SECS: "${AQUILA_GRPC_CONNECT_TIMEOUT_SECS}"
AQUILA_GRPC_REQUEST_TIMEOUT_SECS: "${AQUILA_GRPC_REQUEST_TIMEOUT_SECS}"
restart: unless-stopped
profiles:
- runtime
Expand Down