镜像概览
- 完整引用
docker.io/vinlic/jimeng-free-api- Registry
- docker.io
- 命名空间
- vinlic
- 仓库
- jimeng-free-api
- 已缓存 Tag 数
- 7
- 最近同步
- 07/06/2026, 04:50 PM
简介
即梦(Jimeng)AI 绘图能力的非官方 HTTP API 代理,将 OpenAI 兼容请求转发至字节服务,适合内网网关统一鉴权与限流。
详细介绍
vinlic/jimeng-free-api 将 /v1/images/generations 等 OpenAI 风格接口映射到即梦后端,开发者用现有 SDK 即可调用文生图。镜像需配置 Cookie 或 Token 等鉴权信息,非 官方发行版,合规与稳定性需自行评估。与直连 Web 相比便于在内网统一 API Key 与审计日志;生产应固定 tag、前置反向代理限流,密钥经 env 或 Secret 注入,勿暴露公网无认证。
快速启动
docker run -d --name jimeng-api \
-p 8000:8000 \
-e JIMENG_SESSION=your-session-token \
docker.io/vinlic/jimeng-free-api:latest
推荐实践
docker run -d --name jimeng-api \
--restart unless-stopped \
-p 8000:8000 \
-e JIMENG_SESSION=your-session-token \
-e API_KEY=internal-gateway-key \
-e TZ=Asia/Shanghai \
docker.io/vinlic/jimeng-free-api:0.0.15
核心参数说明
-p 8000:8000— OpenAI 兼容 HTTP API 端口-e JIMENG_SESSION— 即梦账号 session/cookie-e API_KEY— 网关层二次鉴权密钥-e TZ— 日志时间戳时区--restart unless-stopped— 代理服务持续在线- 合规 — 非官方镜像,商用前确认服务条款
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: jimeng-free-api
spec:
replicas: 2
selector:
matchLabels:
app: jimeng-free-api
template:
metadata:
labels:
app: jimeng-free-api
spec:
containers:
- name: api
image: docker.io/vinlic/jimeng-free-api:0.0.15
ports:
- containerPort: 8000
envFrom:
- secretRef:
name: jimeng-credentials
---
apiVersion: v1
kind: Service
metadata:
name: jimeng-free-api
spec:
selector:
app: jimeng-free-api
ports:
- port: 8000
targetPort: 8000
Session 与 API_KEY 经 Secret 注入;Ingress 启用 TLS 与 rate limit,无状态可水平扩缩。
最新 Tag(20 条)
查看全部 7 个 Tag →| Tag | 架构 | 推送时间 | 大小 | Digest | 同步 | 期望 | 操作 |
|---|---|---|---|---|---|---|---|
docker.io/vinlic/jimeng-free-api :latest | linux/amd64linux/arm64 | 2025/04/09 09:47 | 71.8 MB | sha256:9e4bb37e0853… | |||
docker.io/vinlic/jimeng-free-api :0.0.6 | linux/amd64linux/arm64 | 2025/04/09 09:47 | 71.8 MB | sha256:9e4bb37e0853… | |||
docker.io/vinlic/jimeng-free-api :0.0.5 | linux/amd64linux/arm64 | 2025/03/19 23:04 | 71.8 MB | sha256:1ff16edbe2e7… | |||
docker.io/vinlic/jimeng-free-api :0.0.4 | linux/amd64linux/arm64 | 2024/12/12 10:43 | 71.5 MB | sha256:98f22a87a926… | |||
docker.io/vinlic/jimeng-free-api :0.0.3 | linux/amd64linux/arm64 | 2024/12/08 01:40 | 71.7 MB | sha256:aab1b7ab83f0… | |||
docker.io/vinlic/jimeng-free-api :0.0.2 | linux/amd64linux/arm64 | 2024/12/07 14:07 | 71.7 MB | sha256:c40cdb62bfa3… | |||
docker.io/vinlic/jimeng-free-api :0.0.1 | linux/amd64linux/arm64 | 2024/12/07 04:12 | 71.7 MB | sha256:e41fd5de1b16… |