From d56486a4aac60fadc9d2a9f7561edf23d0699195 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 7 Mar 2026 12:21:27 -0800 Subject: [PATCH] fix(agent-service): use hailin168/openclaw-bridge Docker Hub image The it0hub org doesn't exist on Docker Hub. Switch to hailin168/openclaw-bridge:latest which was built and pushed from openclaw source + IT0 bridge. Co-Authored-By: Claude Sonnet 4.6 --- .../infrastructure/services/agent-instance-deploy.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/services/agent-service/src/infrastructure/services/agent-instance-deploy.service.ts b/packages/services/agent-service/src/infrastructure/services/agent-instance-deploy.service.ts index c8d438a..3431730 100644 --- a/packages/services/agent-service/src/infrastructure/services/agent-instance-deploy.service.ts +++ b/packages/services/agent-service/src/infrastructure/services/agent-instance-deploy.service.ts @@ -6,7 +6,7 @@ import * as crypto from 'crypto'; import { AgentInstance } from '../../domain/entities/agent-instance.entity'; import { AgentInstanceRepository } from '../repositories/agent-instance.repository'; -const OPENCLAW_IMAGE = 'it0hub/openclaw-bridge:latest'; +const OPENCLAW_IMAGE = 'hailin168/openclaw-bridge:latest'; const PORT_RANGE_START = 20000; const PORT_RANGE_END = 29999; const INTERNAL_API_KEY_HEADER = 'x-internal-api-key';