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

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

wolfyuan/dolphin Docker 镜像 - 轩辕镜像 | Docker 镜像高效稳定拉取服务

dolphin
wolfyuan/dolphin
wolfyuan
Multi usage container image for hosting various applications
0 次下载
🔒 更安全的专业镜像服务
镜像简介版本下载
🔒 更安全的专业镜像服务

🐬 Dolphin

All-in-one solution for hosting your code

Dolphin is still under heavy development, please create an issue if you face any bugs or request a feature

Dolphin is a cool container image that prepared everything for you!

✨ Features:

  • Container running with s6-overlay
  • Modular design
  • Support a wide variety of language
  • Multi-base image and CPU architecture
  • Code runs in a rootless process

  • 🏃 Running image
  • 📦️ Container images
    • Tagging format
  • 🌎️ Environment variables and workflow
    • Variables that apply to every image
    • Image specific options
  • 💾 Persist data inside container
  • 🎩 RedHat Podman support
  • 📽️ Graphics card support

🏃 Running image

bash
docker run --name dolphin-box -d \
  -e GIT_URL="[***]" \
  --restart unless-stopped \
  docker.io/wolfyuan/dolphin:node

Command breakdown: -e GIT_URL="[***]" - Environment variables for controlling container, see here for a full list

You can add multiple variables, like:

-e GIT_URL="[***]" -e SYSTEM_PACKAGES="automake"

So the whole command will be

bash
docker run --name dolphin-box -d \
 -e GIT_URL="[***]" \
 -e SYSTEM_PACKAGES="automake" \
 --restart unless-stopped \
 docker.io/wolfyuan/dolphin:node

--restart unless-stopped - Restart your container when it fails or you reboot your machine unless you stop it by yourself

docker.io/wolfyuan/dolphin:node - Container image, where node represents to image that's designed for this language, see here for full list

📦️ Container images

Most image supports arm based CPU unless mentioned in the note.

Image nameDescriptionVariantsTagArchitecture
Node.jsImage with necessary software to run Node.js softwarealpine, ubuntunodeamd64, arm64 (ubuntu), arm/v7 (ubuntu)
BaseBase image, you should NOT use this image when runningalpine, ubuntubaseamd64, arm64,arm/v7
Tagging format

Images are tagged with this format: [Image Tag]-[Image Variants]

For example, the node image with ubuntu base will be: node-ubuntu

If you don't specify image variants, it will pull the ubuntu base

For example, pulling the node tag will pull the node-ubuntu image

🌎️ Environment variables and workflow

Applies to every image:

Environment variables:

Environment variables nameDescription
SYSTEM_PACKAGESAdditional packages to install when the container starts
PACKAGES_LOCATIONSystem packages cache location
PACKAGES_DISABLE_CACHEDisable system package cache (Set to any value to disable)
GIT_URLGit repo to clone when the container starts

Workflow:

  1. Container starts
  2. Prepare runner folders
  3. Add additional system packages
  4. Clone git repo with GIT_URL
📝 Note
You can install additional system packages via the SYSTEM_PACKAGES variable
For example, installing automake on the base system, just set SYSTEM_PACKAGES with the value automake
When installing multiple system packages, separate them by spaces, for example, automake cmake
📝 Note
Alpine-based image will use apk to install packages
Ubuntu-based image will use apt-get to install packages
📝 Note
Downloaded packages will be cached to /home/dolphin/packages if PACKAGES_LOCATION isn't changed
Image-specific options
node

Environment variables:

Environment variables nameDescription
NODE_VERSIONNode.js version to install, overrides .nvmrc
NODE_START_SCRIPTScript to run when container finished running init script

Workflow:

  1. Container start
  2. Base image initialize
  3. Install Node.js via NODE_VERSION or .nvmrc in your project
  4. Install npm packages via the detected package manager
  5. Run build script via detected package manager if presents
  6. Start the Node.js process via NODE_START_SCRIPT or script in package.json via the detected package manager
📝 Note
Supported package managers: pnpm, yarn, npm
📝 Note
In package manager: pnpm > yarn > npm
In node version: NODE_VERSION > .nvmrc
python

Environment variables:

Environment variables nameDescription
PYTHON_VERSIONPython version to install, overrides .python-version
PYTHON_BUILD_SCRIPTScript to run after installing Python packages
PYTHON_START_SCRIPTScript to run when container finished running init script
PYTHON_START_FILEScript to run when container finished running init script

Workflow:

  1. Container start
  2. Base image initialize
  3. Install Python via PYTHON_VERSION or .python-version in your project
  4. Install python packages via pip
  5. Start the Python process via PYTHON_START_SCRIPT and the script in PYTHON_START_FILE with command python3
⚠️ Warning
Due to how pyenv switch Python version, it's recommended to presist your container storage, see Presist data inside container for more info
📝 Note
When PYTHON_START_SCRIPT and PYTHON_START_FILE both exists, it will run PYTHON_START_SCRIPT first, and run PYTHON_START_FILE after previous script has finished
📝 Note
In Python version: PYTHON_VERSION > .python-version

💾 Persist data inside container

You can mount two types of directory to the Dolphin container:

  • /home/dolphin: Contain your code (space), and other runtime binaries installation like nvm, pyenv

    Use this when you want to save more bandwidth

  • /home/dolphin/space

    Use this when you want to prevent rebuilding your project

To mount the directory, append these arguments when starting the Docker container:

bash
-v /path/to/your/host/folder:/home/dolphin

or

bash
-v /path/to/your/host/folder:/home/dolphin/space
⚠️ Warning
You can't mount two directories at the same time!

🎩 RedHat Podman support

It SHOULD work, maybe

📽️ Graphics card support

I haven't tried it, but your application will be run in a rootless environment, so it might not work.

查看更多 dolphin 相关镜像 →
linuxserver/dolphin logo
linuxserver/dolphin
linuxserver
Dolphin Emulator的Docker镜像,用于在容器环境中运行GameCube和Wii游戏,支持图形增强等功能以改善游戏体验。
110K+ pulls
上次更新:12 天前

轩辕镜像配置手册

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

登录仓库拉取

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

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

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

镜像拉取常见问题

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

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

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

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
wolfyuan/dolphin
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.