fix(deploy): pass AGENT_SERVICE_PUBLIC_URL into agent-service container
Required so agent-service can inject IT0_AGENT_SERVICE_URL into openclaw containers when deploying agent instances to pool servers. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c3b31ebf47
commit
09e50154d3
|
|
@ -149,6 +149,7 @@ services:
|
||||||
- INVENTORY_SERVICE_URL=http://inventory-service:3004
|
- INVENTORY_SERVICE_URL=http://inventory-service:3004
|
||||||
- INTERNAL_API_KEY=${INTERNAL_API_KEY:-changeme-internal-key}
|
- INTERNAL_API_KEY=${INTERNAL_API_KEY:-changeme-internal-key}
|
||||||
- VAULT_MASTER_KEY=${VAULT_MASTER_KEY:-dev-vault-key}
|
- VAULT_MASTER_KEY=${VAULT_MASTER_KEY:-dev-vault-key}
|
||||||
|
- AGENT_SERVICE_PUBLIC_URL=${AGENT_SERVICE_PUBLIC_URL}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "node -e \"require('http').get('http://localhost:3002/',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))\""]
|
test: ["CMD-SHELL", "node -e \"require('http').get('http://localhost:3002/',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))\""]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue