remote-docker Docker 镜像下载 - 轩辕镜像
remote-docker 镜像详细信息和使用指南
remote-docker 镜像标签列表和版本信息
remote-docker 镜像拉取命令和加速下载
remote-docker 镜像使用说明和配置指南
Docker 镜像加速服务 - 轩辕镜像平台
国内开发者首选的 Docker 镜像加速平台
极速拉取 Docker 镜像服务
相关 Docker 镜像推荐
热门 Docker 镜像下载
remote-docker 镜像详细信息
remote-docker 镜像标签列表
remote-docker 镜像使用说明
remote-docker 镜像拉取命令
Docker 镜像加速服务
轩辕镜像平台优势
镜像下载指南
相关 Docker 镜像推荐
remote-docker 镜像详细说明
remote-docker 使用指南
remote-docker 配置说明
remote-docker 官方文档
Remote Docker Desktop Extension
Manage remote Docker environments directly from Docker Desktop
Overview
🚀 Remote Docker is a powerful Docker Desktop extension that revolutionizes how you manage remote Docker environments. Connect securely to any Docker host through SSH tunnels and enjoy the familiar Docker Desktop experience, whether your containers are running locally or on remote servers across the globe.
 - Username: SSH username (e.g.,
ubuntu) - Port: SSH port (default: 22)
- Hostname: Your remote Docker host (e.g.,
- Connect to start managing your remote Docker environment
Requirements
Local Machine
- Docker Desktop 4.8.0 or later
- SSH key pair for authentication
Remote Host
- Docker Engine installed and running
- SSH server with key-based authentication enabled
- User with Docker permissions (typically in the
dockergroup)
SSH Key Setup
The extension uses SSH key authentication for secure connections. Your SSH keys are automatically mounted from your local .ssh directory.
Windows
powershell# Keys are read from C:\Users\<username>\.ssh\id_rsa C:\Users\<username>\.ssh\id_rsa.pub
macOS/Linux
bash# Keys are read from ~/.ssh/id_rsa ~/.ssh/id_rsa.pub
Setting up SSH Keys
-
Generate SSH keys (if you don't have them):
bashssh-keygen -t rsa -b 4096 -
Copy your public key to the remote host:
bashssh-copy-id username@remote-host -
Test the connection:
bashssh username@remote-host docker version
Features in Detail
Dashboard
- System information and Docker version
- Resource utilization (CPU, Memory, Disk)
- Container statistics and distribution
- Recent Docker events
- Real-time metrics with auto-refresh
Container Management
- View all containers with status
- Start/stop containers
- View container logs with syntax highlighting
- Port mapping information
- Docker Compose project grouping
Image Management
- List all images with size information
- Remove unused images
- View image details and layers
Network Management
- List Docker networks
- View network configuration
- Delete unused networks
Volume Management
- List Docker volumes
- View volume details
- Remove unused volumes
MCP Toolkit Integration
The extension now supports running MCP (Model Context Protocol) servers on remote Docker hosts, enabling AI assistants to interact with remote systems securely.
🆕 MCP Catalog Browser (v1.0.15+)
- Browse Available Servers: Explore the MCP catalog with 8+ server types
- Search & Filter: Find servers by name, description, or category
- One-Click Install: Install any MCP server with a single click
- Auto-Configuration: Smart configuration based on server type
- Real-time Metrics: See download counts and ratings
- Categories: Browse by storage, docker, shell, kubernetes, database, git, monitoring, AI/LLM
Available MCP Server Types
- Filesystem Access: Read/write or read-only access to remote files
- Docker Management: Control containers, images, and networks via MCP
- Shell Access: Execute commands with configurable restrictions
- Kubernetes: Manage Kubernetes clusters and resources
- Database Access: Connect to PostgreSQL, MySQL, MongoDB
- Git Repository: Work with Git repositories on remote hosts
- Monitoring: System metrics, logs, and alerts
- AI/LLM Integration: Connect to Claude, GPT, and local models
MCP Features
- Browse and install from the MCP catalog
- Pre-configured server templates for quick deployment
- One-click server creation and management
- Secure SSH tunneling for all MCP connections
- Real-time server status monitoring
- Automatic port assignment and management
- Container-based isolation for each MCP server
- Custom naming for installed servers
Configuration
Environment Settings
Each environment can be configured with:
- Name: Friendly name for the environment
- Hostname: IP address or domain name
- Port: SSH port (default: 22)
- Username: SSH username
Auto-refresh Settings
- Enable/disable auto-refresh per view
- Configurable refresh intervals (15s, 30s, 60s, 300s)
- Visual indicators for refresh status
Security
- SSH Key Authentication: Only SSH key authentication is supported (no passwords)
- Local Key Storage: SSH keys remain on your local machine
- Read-only Mounts: Keys are mounted read-only in the extension container
- No Keys in Images: Docker images do not contain any SSH keys
- Secure Tunneling: All Docker API communication goes through SSH tunnels
Architecture
Components
The extension consists of two main parts:
-
Backend (Go)
- Handles SSH tunnel creation and management
- Proxies Docker commands to remote hosts
- Built with Echo framework
-
Frontend (React/TypeScript)
- Provides a UI for remote Docker management
- Features a responsive dashboard with real-time updates
- Built with Material UI components and Recharts for data visualization
How It Works
- The extension mounts your local
~/.sshdirectory as read-only - When you connect to a remote environment, it creates an SSH tunnel
- Docker commands are proxied through the tunnel to the remote Docker daemon
- Results are displayed in the familiar Docker Desktop UI
Troubleshooting
Common Issues
"Permission denied" SSH Error
- Ensure your SSH key has proper permissions (600 on Unix-like systems)
- Verify the remote user is in the
dockergroup - Check SSH key is correctly added to remote host's
authorized_keys
Blank Screen on Extension Load
- Check Docker Desktop console for errors (View → Developer Tools)
- Ensure Docker Desktop is up to date
- Try reinstalling the extension
Cannot Connect to Remote Host
- Verify SSH connection works:
ssh username@hostname - Check Docker is running on remote:
ssh username@hostname docker ps - Ensure no firewall is blocking SSH port
Debug Mode
Enable debug logging in the extension:
- Open Docker Desktop Developer Tools
- Check console for detailed error messages
- Look for API response errors
Development
See docs/development.md for development setup and contribution guidelines.
Project Structure
remote-docker/ ├── backend/ # Go backend service ├── ui/ # React frontend ├── docs/ # Documentation ├── scripts/ # Build and deployment scripts ├── assets/ # Icons and images ├── Dockerfile # Extension container definition ├── metadata.json # Extension metadata └── docker-compose.yaml
Documentation
- User Guide - Detailed usage instructions
- API Reference - Backend API documentation
- MCP Integration - MCP toolkit architecture and implementation
- Development Guide - Setup and contribution guide
- Docker Hub Cleanup - Image management guide
Contributing
Contributions are welcome! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.
Acknowledgments
- Built with Docker Extension SDK
- UI powered by React and Material-UI
- Backend powered by Go and Echo
- Extension icon created using Midjourney
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Docker Hub: telkombe/remote-docker
- Repository: anubissbe/remote-docker
☕ Support the Project
If you find this extension helpful and want to support its development, consider buying me a coffee! Your support helps maintain and improve the project.
Every contribution, no matter how small, is greatly appreciated and helps keep this project active and improving! 🙏
📄 License & Disclaimer
This project is licensed under the MIT License - see the LICENSE file for details.
⚠️ Important Notice
Use Responsibly: This extension provides direct access to remote Docker environments. Always:
- Test on non-production environments first
- Review all actions before execution
- Maintain proper backup procedures
- Follow your organization's security policies
🎯 Project Genesis
This project was created as an exploration of:
- 🐳 Docker Desktop Extension SDK capabilities and architecture
- 🤖 LLM-assisted development workflows and best practices
- 🔧 Remote Docker management patterns and security considerations
- 🚀 Modern web technologies integration (React, TypeScript, Go)
Built with curiosity, enhanced by community contributions.
📸 Screenshots
🖼️ Click to view extension screenshots
| Dashboard | Container Management |
|---|---|
| !Dashboard | !Containers |
| Compose Logs | Image Management |
|---|---|
| !Compose Logs | !Images |
| Volume Management | Network Management |
|---|---|
| !Volumes | !Networks |
| Environment Setup | Environment Selection |
|---|---|
| !Environments | !Selection |
用户好评
来自真实用户的反馈,见证轩辕镜像的优质服务
oldzhang
运维工程师
Linux服务器
"Docker加速体验非常流畅,大镜像也能快速完成下载。"
Nana
后端开发
Mac桌面
"配置Docker镜像源后,拉取速度快了数倍,开发体验提升明显。"
Qiang
平台研发
K8s集群
"轩辕镜像在K8s集群中表现很稳定,容器部署速度明显加快。"
小敏
测试工程师
Windows桌面
"Docker镜像下载不再超时,测试环境搭建更加高效。"
晨曦
DevOps工程师
宝塔面板
"配置简单,Docker镜像源稳定,适合快速部署环境。"
阿峰
资深开发
群晖NAS
"在群晖NAS上配置后,镜像下载速度飞快,非常适合家庭实验环境。"
俊仔
后端工程师
飞牛NAS
"Docker加速让容器搭建顺畅无比,再也不用等待漫长的下载。"
Lily
测试经理
Linux服务器
"镜像源覆盖面广,更新及时,团队一致反馈体验不错。"
浩子
云平台工程师
Podman容器
"使用轩辕镜像后,Podman拉取镜像稳定无比,生产环境可靠。"
Kai
运维主管
爱快路由
"爱快系统下配置加速服务,Docker镜像拉取速度提升非常大。"
翔子
安全工程师
Linux服务器
"镜像源稳定性高,安全合规,Docker拉取无忧。"
亮哥
架构师
K8s containerd
"大规模K8s集群下镜像加速效果显著,节省了大量时间。"
慧慧
平台开发
Docker Compose
"配置Compose镜像加速后,整体构建速度更快了。"
Tina
技术支持
Windows桌面
"配置简单,镜像拉取稳定,适合日常开发环境。"
宇哥
DevOps Leader
极空间NAS
"在极空间NAS上使用Docker加速,体验流畅稳定。"
小静
数据工程师
Linux服务器
"Docker镜像源下载速度快,大数据环境搭建轻松完成。"
磊子
SRE
宝塔面板
"使用轩辕镜像后,CI/CD流程整体快了很多,值得推荐。"
阿Yang
前端开发
Mac桌面
"国内网络环境下,Docker加速非常给力,前端环境轻松搭建。"
Docker迷
架构师
威联通NAS
"威联通NAS下配置镜像加速后,Docker体验比官方源好很多。"
方宇
系统工程师
绿联NAS
"绿联NAS支持加速配置,Docker镜像下载快且稳定。"
常见问题
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
轩辕镜像下载加速使用手册
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
登录仓库拉取
通过 Docker 登录认证访问私有仓库
Linux
在 Linux 系统配置镜像加速服务
Windows/Mac
在 Docker Desktop 配置镜像加速
Docker Compose
Docker Compose 项目配置加速
K8s Containerd
Kubernetes 集群配置 Containerd
宝塔面板
在宝塔面板一键配置镜像加速
群晖
Synology 群晖 NAS 配置加速
飞牛
飞牛 fnOS 系统配置镜像加速
极空间
极空间 NAS 系统配置加速服务
爱快路由
爱快 iKuai 路由系统配置加速
绿联
绿联 NAS 系统配置镜像加速
威联通
QNAP 威联通 NAS 配置加速
Podman
Podman 容器引擎配置加速
其他仓库配置
ghcr、Quay、nvcr 等镜像仓库
专属域名拉取
无需登录使用专属域名加速
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429