专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单页面收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题轩辕镜像免费版
其他
关于我们网站地图
热门搜索:
whisper-server

hwdsl2/whisper-server

hwdsl2

Self-hosted Whisper speech-to-text server with an OpenAI-compatible API. Powered by faster-whisper.

2 次收藏下载次数: 0状态:社区镜像维护者:hwdsl2仓库类型:镜像最近更新:7 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明

如果你用 DeepSeek、元宝AI、Copilot 等 AI 代为编写轩辕镜像的 docker pull、修改 compose 镜像地址,或排查拉取失败等问题,请让 AI 先读规则再动手,只要在 AI 对话里直接发送下面这句话即可:

生成 docker pull、修改 compose 的 image,或排查拉取失败前,请先阅读并严格遵守 https://xuanyuan.cloud/agents.md 中的规则。

国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

轩辕镜像,快一点,稳很多。点击查看
镜像简介
标签下载
镜像标签列表与下载命令
轩辕镜像,快一点,稳很多。点击查看

Whisper Speech-to-Text on Docker

https://github.com/hwdsl2/docker-whisper/actions/workflows/main.yml/badge.svg](https://github.com/hwdsl2/docker-whisper/actions/workflows/main.yml)  https://raw.githubusercontent.com/hwdsl2/badges/main/img/docker-pulls-whisper-server.svg](https://hub.docker.com/r/hwdsl2/whisper-server)  ![Open In Colab]([***]

GitHub: https://github.com/hwdsl2/docker-whisper

Part of the https://github.com/hwdsl2/docker-ai-stack — deploy a complete self-hosted AI stack with a single command.

Docker image to run a https://github.com/openai/whisper speech-to-text server, powered by https://github.com/SYSTRAN/faster-whisper. Provides OpenAI-compatible audio transcription and translation APIs. Based on Debian (python:3.12-slim). Designed to be simple, private, and self-hosted.

Features:

  • OpenAI-compatible POST /v1/audio/transcriptions and POST /v1/audio/translations endpoints — any app using the OpenAI Whisper API switches with a one-line change
  • Supports all Whisper models: tiny, base, small, medium, large-v3, large-v3-turbo and more
  • Speaker diarization — identify who is speaking in each segment (optional, via https://github.com/k2-fsa/sherpa-onnx)
  • Model management via a helper script (whisper_manage)
  • Audio stays on your server — no data sent to third parties
  • All major audio formats supported (mp3, m4a, wav, webm, ogg, flac, and all ffmpeg formats)
  • Multiple response formats: JSON, plain text, verbose JSON, SRT subtitles, WebVTT subtitles
  • Streaming transcription — add stream=true to receive segments via SSE as they are decoded, with no waiting for the full file
  • NVIDIA GPU (CUDA) acceleration for faster inference (:cuda image tag)
  • Offline/air-gapped mode — run without internet access using pre-cached models (WHISPER_LOCAL_ONLY)
  • Automatically built and published via https://github.com/hwdsl2/docker-whisper/actions/workflows/main.yml
  • Persistent model cache via a Docker volume
  • Multi-arch: linux/amd64, linux/arm64

Also available:

  • Try it online: Open in Colab — no Docker or installation required
  • AI/Audio: https://github.com/hwdsl2/docker-whisper-live, https://github.com/hwdsl2/docker-kokoro, https://github.com/hwdsl2/docker-embeddings, https://github.com/hwdsl2/docker-litellm, https://github.com/hwdsl2/docker-ollama, https://github.com/hwdsl2/docker-docling
  • : https://github.com/hwdsl2/docker-, https://github.com/hwdsl2/docker-open***, https://github.com/hwdsl2/docker-ipsec-***-server, https://github.com/hwdsl2/docker-***
  • Tools: https://github.com/hwdsl2/docker-mcp-gateway

Tip: Whisper, Kokoro, Embeddings, LiteLLM, Ollama, Docling, and MCP Gateway can be used together to build a complete, self-hosted AI stack on your own server.

Community

  • Subscribe for project updates (1–2 emails/month) — get free AI and *** deployment guides (PDF)
  • Join the r/selfhostedstack community for discussions and showcases

When to use Whisper vs. WhisperLive

docker-whisperhttps://github.com/hwdsl2/docker-whisper-live
Use caseTranscribe complete audio filesLive microphone / real-time audio streaming
ProtocolHTTP RESTWebSocket (streaming) + HTTP REST
LatencyFull file, then responseNear-real-time, word by word
Best forMeeting recordings, uploaded audioBrowser capture, RTSP streams, live captions
Image size~190 MB (~3.1 GB for :cuda)~750 MB (~4.5 GB for :cuda)

Quick start

Use this command to set up a Whisper server:

bash
docker run \
    --name whisper \
    --restart=always \
    -v whisper-data:/var/lib/whisper \
    -p 9000:9000 \
    -d hwdsl2/whisper-server
GPU quick start (NVIDIA CUDA)

If you have an NVIDIA GPU, use the :cuda image for hardware-accelerated inference:

bash
docker run \
    --name whisper \
    --restart=always \
    --gpus=all \
    -v whisper-data:/var/lib/whisper \
    -p 9000:9000 \
    -d hwdsl2/whisper-server:cuda

Requirements: NVIDIA GPU, NVIDIA driver 535+, and the NVIDIA Container Toolkit installed on the host. The :cuda image is linux/amd64 only.

Important: This image requires at least 700 MB of available RAM for the default base model. Systems with 512 MB or less of RAM are not supported.

Note: For internet-facing deployments, using a reverse proxy to add HTTPS is strongly recommended. In that case, also replace -p 9000:9000 with -p 127.0.0.1:9000:9000 in the docker run command above, to prevent direct access to the unencrypted port. Set WHISPER_API_KEY in your env file when the server is accessible from the public internet.

The Whisper base model (~145 MB) is downloaded and cached on first start. Check the logs to confirm the server is ready:

bash
docker logs whisper

Once you see "Whisper speech-to-text server is ready", transcribe your first audio file:

bash
curl http://your_server_ip:9000/v1/audio/transcriptions \
    -F file=@audio.mp3 \
    -F model=whisper-1

Response:

json
{"text": "Your transcribed text appears here."}

Tip: Need a sample audio file to test? Download this English speech sample (WAV, MIT License) from the https://github.com/Azure-Samples/cognitive-services-speech-sdk repository:

bash
curl -L -o sample_speech.wav \
    "https://github.com/Azure-Samples/cognitive-services-speech-sdk/raw/master/sampledata/audiofiles/katiesteve.wav"

curl http://your_server_ip:9000/v1/audio/transcriptions \
    -F file=@sample_speech.wav \
    -F model=whisper-1

Alternatively, you may https://github.com/hwdsl2/whisper-install. To learn more about how to use this image, read the sections below.

Requirements

  • A Linux server (local or cloud) with Docker installed
  • Supported architectures: amd64 (x86_64), arm64 (e.g. Raspberry Pi 4/5, AWS Graviton)
  • Minimum RAM: ~700 MB free for the default base model (see model table)
  • Internet access for the initial model download (the model is cached locally afterwards). Not required if using WHISPER_LOCAL_ONLY=true with pre-cached models.

For GPU acceleration (:cuda image):

  • NVIDIA GPU with CUDA support (Compute Capability 6.0+)
  • NVIDIA driver 535 or later installed on the host
  • NVIDIA Container Toolkit installed
  • The :cuda image supports linux/amd64 only

For internet-facing deployments, see Using a reverse proxy to add HTTPS.

Download

Get the trusted build from the https://hub.docker.com/r/hwdsl2/whisper-server/:

bash
docker pull hwdsl2/whisper-server

For NVIDIA GPU acceleration, pull the :cuda tag instead:

bash
docker pull hwdsl2/whisper-server:cuda

Alternatively, you may download from Quay.io:

bash
docker pull quay.io/hwdsl2/whisper-server
docker image tag quay.io/hwdsl2/whisper-server hwdsl2/whisper-server

Supported platforms: linux/amd64 and linux/arm64. The :cuda tag supports linux/amd64 only.

Environment variables

All variables are optional. Set WHISPER_API_KEY to enable Bearer token authentication.

This Docker image uses the following variables, that can be declared in an env file (see example):

VariableDescriptionDefault
WHISPER_MODELWhisper model to use. See model table for options.base
WHISPER_LANGUAGEDefault transcription language. BCP-47 code (e.g. en, fr, de, zh, ja) or auto to autodetect.auto
WHISPER_PORTHTTP port for the API (1–65535).9000
WHISPER_DEVICECompute device: cpu, cuda, or auto. Use cuda with the :cuda image for GPU acceleration. auto detects GPU and falls back to CPU.cpu
WHISPER_COMPUTE_TYPEQuantization / compute type. int8 is recommended for CPU; float16 is recommended for CUDA.int8 (CPU) / float16 (CUDA)
WHISPER_THREADSCPU threads for inference. Set to the number of physical cores for best latency.2
WHISPER_API_KEYOptional Bearer token. If set, all API requests must include Authorization: Bearer <key>.(not set)
WHISPER_LOG_LEVELLog level: DEBUG, INFO, WARNING, ERROR, CRITICAL.INFO
WHISPER_BEAMBeam size for transcription decoding. Higher values may improve accuracy at the cost of speed. Use 1 for fastest (greedy) decoding.5
WHISPER_LOCAL_ONLYWhen set to any non-empty value (e.g. true), disables all HuggingFace model downloads. For offline or air-gapped deployments with pre-cached models.(not set)
WHISPER_WORD_TIMESTAMPSWhen set to true, enables word-level timestamps globally for all requests. The verbose_json output will include a top-level words array with per-word timing and confidence. Can also be enabled per-request via timestamp_granularities[]=word.(not set)
WHISPER_DIARIZATIONSet to true to enable speaker diarization. Identifies who is speaking in each segment. Uses https://github.com/k2-fsa/sherpa-onnx with pyannote segmentation-3.0 ONNX models (~45 MB, auto-downloaded on first use). Not supported in streaming mode.(not set)
WHISPER_DIARIZE_NUM_SPEAKERSExact number of speakers (if known). Improves clustering accuracy. Set to -1 or leave unset for auto-detection.-1
WHISPER_DIARIZE_MAX_SPEAKERSMaximum number of speakers to detect. Only used when NUM_SPEAKERS is unset.-1
WHISPER_DIARIZE_THRESHOLDClustering threshold. Lower = more speakers detected, higher = fewer.0.5

Note: In your env file, you may enclose values in single quotes, e.g. VAR='value'. Do not add spaces around =. If you change WHISPER_PORT, update the -p flag in the docker run command accordingly.

Example using an env file:

bash
cp whisper.env.example whisper.env
# Edit whisper.env with your settings, then:
docker run \
    --name whisper \
    --restart=always \
    -v whisper-data:/var/lib/whisper \
    -v ./whisper.env:/whisper.env:ro \
    -p 9000:9000 \
    -d hwdsl2/whisper-server

The env file is bind-mounted into the container, so changes are picked up on every restart without recreating the container.

Alternatively, pass it with --env-file
bash
docker run \
    --name whisper \
    --restart=always \
    -v whisper-data:/var/lib/whisper \
    -p 9000:9000 \
    --env-file=whisper.env \
    -d hwdsl2/whisper-server

Using docker-compose

bash
cp whisper.env.example whisper.env
# Edit whisper.env as needed, then:
docker compose up -d
docker logs whisper

Example docker-compose.yml (already included):

yaml
services:
  whisper:
    image: hwdsl2/whisper-server
    container_name: whisper
    restart: always
    ports:
      - "9000:9000/tcp"  # For a host-based reverse proxy, change to "127.0.0.1:9000:9000/tcp"
    volumes:
      - whisper-data:/var/lib/whisper
      - ./whisper.env:/whisper.env:ro

volumes:
  whisper-data:
    name: whisper-data

Note: For internet-facing deployments, using a reverse proxy to add HTTPS is strongly recommended. In that case, also change "9000:9000/tcp" to "127.0.0.1:9000:9000/tcp" in docker-compose.yml, to prevent direct access to the unencrypted port. Set WHISPER_API_KEY in your env file when the server is accessible from the public internet.

Using docker-compose with GPU (NVIDIA CUDA)

A separate docker-compose.cuda.yml is provided for GPU deployments:

bash
cp whisper.env.example whisper.env
# Edit whisper.env as needed, then:
docker compose -f docker-compose.cuda.yml up -d
docker logs whisper

Example docker-compose.cuda.yml (already included):

yaml
services:
  whisper:
    image: hwdsl2/whisper-server:cuda
    container_name: whisper
    restart: always
    ports:
      - "9000:9000/tcp"  # For a host-based reverse proxy, change to "127.0.0.1:9000:9000/tcp"
    volumes:
      - whisper-data:/var/lib/whisper
      - ./whisper.env:/whisper.env:ro
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities: [gpu]

volumes:
  whisper-data:
    name: whisper-data

API reference

The API is fully compatible with OpenAI's audio transcription and audio translation endpoints. Any application already calling https://api.openai.com/v1/audio/transcriptions can switch to self-hosted by setting:

OPENAI_BASE_URL=http://your_server_ip:9000

Transcribe audio

POST /v1/audio/transcriptions
Content-Type: multipart/form-data

Parameters:

ParameterTypeRequiredDescription
filefile✅Audio file. Supported formats: mp3, mp4, m4a, wav, webm, ogg, flac and all other formats supported by ffmpeg.
modelstring✅Pass whisper-1 (value is accepted but the active model is always used).
languagestring—BCP-47 language code. Overrides WHISPER_LANGUAGE for this request.
promptstring—Optional text to guide the model's style or continue a previous segment.
response_formatstring—Output format. Default: json. See response formats. Ignored when stream=true.
temperaturefloat—Sampling temperature (0–1). Default: 0.
streamboolean—Enable SSE streaming. When true, segments are returned as text/event-stream events as they are decoded. Default: false.
timestamp_granularities[]array—Timestamp granularities to populate. Values: word, segment. When word is included, verbose_json output includes a top-level words array. Default: ["segment"].

Example:

bash
curl http://your_server_ip:9000/v1/audio/transcriptions \
    -F file=@meeting.m4a \
    -F model=whisper-1 \
    -F language=en

With API key authentication:

bash
curl http://your_server_ip:9000/v1/audio/transcriptions \
    -H "Authorization: Bearer your_api_key" \
    -F file=@audio.mp3 \
    -F model=whisper-1

Response formats

response_formatDescription
json{"text": "..."} — default, matches OpenAI's basic response
textPlain text, no JSON wrapper
verbose_jsonFull JSON with language, duration, per-segment timestamps, log-probabilities
srtSubRip subtitle format (.srt)
vttWebVTT subtitle format (.vtt)

See https://github.com/hwdsl2/docker-whisper#response-formats for more details.

Translate audio

POST /v1/audio/translations
Content-Type: multipart/form-data

Translates audio in any language to English text. Drop-in replacement for OpenAI's audio translation endpoint. Accepts the same parameters as the transcription endpoint. The output is always in English.

Note: Translation is not supported with English-only (.en) models. Use a multilingual model (e.g. base, small, large-v3-turbo).

Example:

bash
curl http://your_server_ip:9000/v1/audio/translations \
    -F file=@french_audio.mp3 \
    -F model=whisper-1

List models

GET /v1/models

Returns the active model in OpenAI-compatible format.

bash
curl http://your_server_ip:9000/v1/models

Interactive API docs

An interactive Swagger UI is available at:

http://your_server_ip:9000/docs

Persistent data

All server data is stored in the Docker volume (/var/lib/whisper inside the container):

/var/lib/whisper/
├── models--Systran--faster-whisper-*/   # Cached Whisper model files (downloaded from HuggingFace)
├── .port                 # Active port (used by whisper_manage)
├── .model                # Active model name (used by whisper_manage)
└── .server_addr          # Cached server IP (used by whisper_manage)

Back up the Docker volume to preserve downloaded models. Models are large (145 MB – 3 GB) and can take several minutes to download on first start; preserving the volume avoids re-downloading on container recreation.

Tip: The /var/lib/whisper volume uses the same HuggingFace cache layout as docker-whisper-live's /var/lib/whisper-live volume. If you have already downloaded a model with docker-whisper-live, you can bind-mount the same volume directory to avoid re-downloading.

Managing the server

Use whisper_manage inside the running container to inspect and manage the server.

Show server info:

bash
docker exec whisper whisper_manage --showinfo

List available models:

bash
docker exec whisper whisper_manage --listmodels

Pre-download a model:

bash
docker exec whisper whisper_manage --downloadmodel large-v3-turbo

Switching models

To change the active model:

  1. (Optional but recommended) Pre-download the new model while the server is running:

    bash
    docker exec whisper whisper_manage --downloadmodel large-v3-turbo
    
  2. Update WHISPER_MODEL in your whisper.env file (or add -e WHISPER_MODEL=large-v3-turbo to your docker run command).

  3. Restart the container:

    bash
    docker restart whisper
    

Available models:

ModelDiskRAM (approx)Notes
tiny~75 MB~250 MBFastest; lower accuracy
tiny.en~75 MB~250 MBEnglish-only
base~145 MB~700 MBGood balance — default
base.en~145 MB~700 MBEnglish-only
small~465 MB~1.5 GBBetter accuracy
small.en~465 MB~1.5 GBEnglish-only
medium~1.5 GB~5 GBHigh accuracy
medium.en~1.5 GB~5 GBEnglish-only
large-v1~3 GB~10 GBOlder large model
large-v2~3 GB~10 GBVery high accuracy
large-v3~3 GB~10 GBBest accuracy
large-v3-turbo~1.6 GB~6 GBFast + high accuracy ⭐
turbo~1.6 GB~6 GBAlias for large-v3-turbo

Tip: large-v3-turbo offers accuracy close to large-v3 at roughly half the resource cost. It is the recommended upgrade path from base for most production deployments.

RAM figures are approximate and reflect INT8 quantization (default). Models are cached in the /var/lib/whisper Docker volume and only downloaded once.

Using a reverse proxy

For internet-facing deployments, place a reverse proxy in front of Whisper to handle HTTPS termination. The server works without HTTPS on a local or trusted network, but HTTPS is recommended when the API endpoint is exposed to the internet.

Use one of the following addresses to reach the Whisper container from your reverse proxy:

  • whisper:9000 — if your reverse proxy runs as a container in the same Docker network as Whisper (e.g. defined in the same docker-compose.yml).
  • 127.0.0.1:9000 — if your reverse proxy runs on the host and port 9000 is published (the default docker-compose.yml publishes it).

Example with Caddy (https://hub.docker.com/_/caddy) (automatic TLS via Let's Encrypt, reverse proxy in the same Docker network):

Caddyfile:

whisper.example.com {
  reverse_proxy whisper:9000
}

Example with nginx (reverse proxy on the host):

nginx
server {
    listen 443 ssl;
    server_name whisper.example.com;

    ssl_certificate     /path/to/cert.pem;
    ssl_certificate_key /path/to/key.pem;

    # Audio files can be large — increase the upload limit as needed
    client_max_body_size 100M;

    location / {
        proxy_pass         http://127.0.0.1:9000;
        proxy_set_header   Host $host;
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header   X-Forwarded-Proto $scheme;
        proxy_http_version 1.1;       # required for chunked streaming (SSE)
        proxy_read_timeout 300s;
    }
}

Set WHISPER_API_KEY in your env file when the server is accessible from the public internet.

Update Docker image

See https://github.com/hwdsl2/docker-whisper#update-docker-image.

Using with other AI services

See https://github.com/hwdsl2/docker-whisper#using-with-other-ai-services.

Speaker diarization

Speaker diarization identifies who is speaking in each transcribed segment. It is powered by https://github.com/k2-fsa/sherpa-onnx using the pyannote segmentation-3.0 model exported to ONNX format.

Enable diarization:

bash
# In your whisper.env:
WHISPER_DIARIZATION=true

ONNX models (~45 MB total) are automatically downloaded on first use and cached in the /var/lib/whisper volume. To pre-download them:

bash
docker exec whisper whisper_manage --downloaddiarize

Output with diarization enabled:

verbose_json adds a speaker field to each segment:

json
{
  "segments": [
    {"id": 0, "start": 1.0, "end": 3.5, "text": "We should launch next week.", "speaker": "SPEAKER_00"},
    {"id": 1, "start": 4.0, "end": 6.2, "text": "I think QA needs two more days.", "speaker": "SPEAKER_01"}
  ]
}

srt and vtt prepend the speaker label:

1
00:00:01,000 --> 00:00:03,500
[SPEAKER_00] We should launch next week.

2
00:00:04,000 --> 00:00:06,200
[SPEAKER_01] I think QA needs two more days.

text format shows the speaker label on speaker changes:

[SPEAKER_00] We should launch next week.
[SPEAKER_01] I think QA needs two more days.

Notes:

  • Diarization requires full audio analysis and is not supported in streaming mode (stream=true). If both are enabled, diarization is silently skipped.
  • Set WHISPER_DIARIZE_NUM_SPEAKERS if you know the exact number of speakers for better accuracy.
  • The diarization pipeline runs after transcription, adding a small amount of processing time proportional to audio duration.

Technical details

  • Base image: python:3.12-slim (Debian) for :latest; nvidia/cuda:12.9.1-cudnn-runtime-ubuntu24.04 for :cuda
  • Runtime: Python 3 (virtual environment at /opt/venv)
  • STT engine: https://github.com/SYSTRAN/faster-whisper with CTranslate2 (INT8 by default on CPU, FP16 on CUDA)
  • API framework: FastAPI + Uvicorn
  • Audio decoding: https://github.com/PyAV-Org/PyAV (bundled FFmpeg libraries)
  • Data directory: /var/lib/whisper (Docker volume)
  • Model storage: HuggingFace Hub format inside the volume — downloaded once, reused on restarts

License

Note: The software components inside the pre-built image (such as faster-whisper and its dependencies) are under the respective licenses chosen by their respective copyright holders. As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Copyright (C) 2026 Lin Song
This work is licensed under the MIT License.

faster-whisper is Copyright (C) SYSTRAN, and is distributed under the https://github.com/SYSTRAN/faster-whisper/blob/master/LICENSE.

This project is an independent Docker setup for Whisper and is not affiliated with, endorsed by, or sponsored by OpenAI or SYSTRAN.

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 whisper-server 镜像标签

docker pull docker.xuanyuan.run/hwdsl2/whisper-server:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull hwdsl2/whisper-server:<标签>

更多 whisper-server 镜像推荐

bobfahey6709/whisper-server logo

bobfahey6709/whisper-server

bobfahey6709
暂无描述
2.8千+ 次下载
13 天前更新
evilfreelancer/whisper-server logo

evilfreelancer/whisper-server

evilfreelancer
Docker化的Whisper.cpp HTTP转录服务器,提供类OAI API接口,支持音频转录,可通过环境变量配置,自动转换音频格式、下载模型及量化处理。
1 次收藏1.3千+ 次下载
1 年前更新
rushiy26/whisper-server logo

rushiy26/whisper-server

rushiy26
Fast whisper server optimized for RunPod.io with smart management and configurable batch processing.
1.3千+ 次下载
4 个月前更新

查看更多 whisper-server 相关镜像

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

Docker 配置

登录仓库拉取

通过 Docker 登录认证访问私有仓库

用 AI 使用轩辕镜像

发给 Cursor、ChatGPT、豆包等 AI 的说明文档

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

Harbor 镜像源配置

Harbor Proxy Repository 对接专属域名

Portainer 镜像源配置

Portainer Registries 加速拉取

Nexus 镜像源配置

Nexus3 Docker Proxy 内网缓存

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

使用与功能问题

配置了专属域名后,docker search 为什么会报错?

docker search 限制

Docker Hub 上有的镜像,为什么在轩辕镜像网站搜不到?

站内搜不到镜像

机器不能直连外网时,怎么用 docker save / load 迁镜像?

离线 save/load

docker pull 拉插件报错(plugin v1+json)怎么办?

插件要用 plugin install

WSL 里 Docker 拉镜像特别慢,怎么排查和优化?

WSL 拉取慢

轩辕镜像安全吗?如何用 digest 校验镜像没被篡改?

安全与 digest

第一次用轩辕镜像拉 Docker 镜像,要怎么登录和配置?

新手拉取配置

轩辕镜像合规吗?轩辕镜像的合规是怎么做的?

镜像合规机制

轩辕镜像支持 docker push 上传本地镜像吗?

不支持 push

错误码与失败问题

docker pull 提示 manifest unknown 怎么办?

manifest unknown

docker pull 提示 no matching manifest 怎么办?

no matching manifest(架构)

镜像已拉取完成,却提示 invalid tar header 或 failed to register layer 怎么办?

invalid tar header(解压)

Docker pull 时 HTTPS / TLS 证书验证失败怎么办?

TLS 证书失败

Docker pull 时 DNS 解析超时或连不上仓库怎么办?

DNS 超时

docker 无法连接轩辕镜像域名怎么办?

域名连通性排查

Docker 拉取出现 410 Gone 怎么办?

410 Gone 排查

出现 402 或「流量用尽」提示怎么办?

402 与流量用尽

Docker 拉取提示 UNAUTHORIZED(401)怎么办?

401 认证失败

遇到 429 Too Many Requests(请求太频繁)怎么办?

429 限流

docker login 提示 Cannot autolaunch D-Bus,还算登录成功吗?

D-Bus 凭证提示

为什么会出现「单层超过 20GB」或 413,无法加速拉取?

413 与超大单层

账号 / 计费 / 权限

轩辕镜像免费版和专业版有什么区别?

免费版与专业版区别

轩辕镜像支持哪些 Docker 镜像仓库?

支持的镜像仓库

镜像拉取失败还会不会扣流量?

失败是否计费

麒麟 V10 / 统信 UOS 提示 KYSEC 权限不够怎么办?

KYSEC 拦截脚本

如何在轩辕镜像申请开发票?

申请开发票(企业 / 个人)

怎么修改轩辕镜像的网站登录和仓库登录密码?

修改登录密码

如何注销轩辕镜像账户?要注意什么?

注销账户

配置与原理类

写了 registry-mirrors,为什么还是走官方或仍然报错?

mirrors 不生效

怎么用 docker tag 去掉镜像名里的轩辕域名前缀?

去掉域名前缀

如何拉取指定 CPU 架构的镜像(如 ARM64、AMD64)?

指定架构拉取

用轩辕镜像拉镜像时快时慢,常见原因有哪些?

拉取速度原因

为什么拉取镜像的 :latest 标签,拿到的往往不是「最新」镜像?

latest 与「最新」

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
hwdsl2/whisper-server
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单。官方公众号:源码跳动。官方技术交流群:51517718。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单。官方公众号:源码跳动。官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.