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 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-07 12:21:27 -08:00
parent ad46e45181
commit d56486a4aa
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import * as crypto from 'crypto';
import { AgentInstance } from '../../domain/entities/agent-instance.entity'; import { AgentInstance } from '../../domain/entities/agent-instance.entity';
import { AgentInstanceRepository } from '../repositories/agent-instance.repository'; 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_START = 20000;
const PORT_RANGE_END = 29999; const PORT_RANGE_END = 29999;
const INTERNAL_API_KEY_HEADER = 'x-internal-api-key'; const INTERNAL_API_KEY_HEADER = 'x-internal-api-key';