BLIP 图像理解服务
BLIP 服务用于图像内容理解与描述生成,适合图像摘要、图文检索预处理等场景。
服务信息
- 服务地址:
- 健康检查地址:
- 镜像:
registry.lazycat.cloud/x/videorag/blip:c218d42
单独部署使用
- 将下面内容保存到一个
docker-compose.yml文件中
yml
services:
blip:
image: registry.lazycat.cloud/x/videorag/blip:c218d42
ports:
- 3000:3000
environment:
- AUTO_UNLOAD_INTERVAL=600
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 30s
retries: 30
start_period: 30s- 在当前目录运行
docker-compose up -d启动 - 启动后先访问
http://127.0.0.1:3000/health确认服务健康