轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
valkey-mcp-server

mekayelanik/valkey-mcp-server

mekayelanik

下载次数: 0状态:社区镜像维护者:mekayelanik仓库类型:镜像最近更新:19 小时前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

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

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,不浪费每一次拉取。
点击查看

Valkey MCP Server

https://hub.docker.com/r/mekayelanik/valkey-mcp-server https://hub.docker.com/r/mekayelanik/valkey-mcp-server https://github.com/MekayelAnik/valkey-mcp-docker/pkgs/container/valkey-mcp-server https://github.com/MekayelAnik/valkey-mcp-docker/blob/main/LICENSE https://hub.docker.com/r/mekayelanik/valkey-mcp-server https://github.com/MekayelAnik/valkey-mcp-docker/stargazers https://github.com/MekayelAnik/valkey-mcp-docker/forks https://github.com/MekayelAnik/valkey-mcp-docker/issues https://github.com/MekayelAnik/valkey-mcp-docker/commits/main

Multi-Architecture Docker Image for Valkey Data Management


😎 Buy Me a Coffee ☕︎

Your support encourages me to keep creating/supporting my open-source projects. If you found value in this project, you can buy me a coffee to keep me inspired.

Table of Contents

  • Overview
  • Supported Architectures
  • Available Tags
  • Quick Start
  • Configuration
  • MCP Client Configuration
  • Network Configuration
  • Updating
  • Troubleshooting
  • Additional Resources
  • Support & License

Overview

Valkey MCP Server is a Model Context Protocol server that provides tools for managing and interacting with Valkey databases. Built on Alpine Linux for minimal footprint and maximum security, wrapped with https://github.com/sparfenyuk/mcp-proxy (replacing supergateway) for StreamableHTTP/SSE transport. Valkey is an open-source, high-performance key/value datastore that is fully compatible with the Redis protocol.

Key Features

  • Multi-Architecture Support - Native support for x86-64 and ARM64
  • Multiple Transport Protocols - StreamableHTTP and SSE via mcp-proxy (exposed simultaneously)
  • Secure by Design - Alpine-based with minimal *** surface
  • High Performance - ZSTD compression for faster deployments
  • Production Ready - Stable releases with comprehensive testing
  • Easy Configuration - Simple environment variable setup

Supported Architectures

ArchitectureTag PrefixStatus
x86-64amd64-<version>Stable
ARM64arm64v8-<version>Stable

Multi-arch images automatically select the correct architecture for your system.


Available Tags

TagStabilityDescriptionUse Case
stableHighMost stable releaseRecommended for production
latestHighLatest stable releaseStay current with stable features
1.0.19HighSpecific versionVersion pinning for consistency
0.1.0-08042026HighVersion + build dateExact build reproducibility
betaLowBeta releasesTesting only

System Requirements

  • Docker Engine: 23.0+
  • RAM: Minimum 512MB
  • CPU: Single core sufficient

CRITICAL: Do NOT expose this container directly to the internet without proper security measures (reverse proxy, SSL/TLS, authentication, firewall rules).


Quick Start

Docker Compose (Recommended)

yaml
services:
  valkey-mcp-server:
    image: mekayelanik/valkey-mcp-server:stable
    container_name: valkey-mcp-server
    restart: unless-stopped
    ports:
      - "8040:8040"
    environment:
      - PORT=8040
      - INTERNAL_PORT=38011
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Dhaka
      - PROTOCOL=SHTTP
      # ENABLE_HTTPS=false is plaintext over the wire. Safe ONLY for loopback
      # / trusted internal networks. Set to "true" for any public, multi-host,
      # or untrusted deployment — HAProxy auto-generates a self-signed cert
      # if none is mounted under /etc/haproxy/certs/.
      - ENABLE_HTTPS=false
      - HTTP_VERSION_MODE=auto
      # mcp-proxy session model. Stateful by default — one stdio child shared
      # across all sessions (multiplexed via JSON-RPC ids). Set to true only
      # if full per-request isolation is required (memory-hostile).
      - MCP_PROXY_STATELESS=false
      # Cap virtual memory of the valkey-mcp stdio child (MiB; 0 disables)
      - VALKEY_MAX_MEM_MB=1024
      # HAProxy concurrency caps (0 disables)
      - HAPROXY_FRONTEND_MAXCONN=64
      - HAPROXY_SERVER_MAXCONN=16
      # Valkey connection settings
      # - VALKEY_URL=valkey://localhost:6379
      # - VALKEY_HOST=localhost
      # - VALKEY_PORT=6379
      # - VALKEY_USERNAME=
      # - VALKEY_PWD=
      # - VALKEY_USE_SSL=false
      # - VALKEY_SSL_CA_PATH=
      # - VALKEY_SSL_KEYFILE=
      # - VALKEY_SSL_CERTFILE=
      # - VALKEY_SSL_CERT_REQS=required
      # - VALKEY_SSL_CA_CERTS=
      # - VALKEY_CLUSTER_MODE=false
      # Optional: require Bearer token auth at HAProxy layer
      # - API_KEY=replace-with-strong-secret
    hostname: valkey-mcp-server
    domainname: local

Deploy:

bash
docker compose up -d
docker compose logs -f valkey-mcp-server

Docker CLI

bash
docker run -d \
  --name=valkey-mcp-server \
  --restart=unless-stopped \
  -p 8040:8040 \
  -e PORT=8040 \
  -e INTERNAL_PORT=38011 \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Asia/Dhaka \
  -e PROTOCOL=SHTTP \
  -e ENABLE_HTTPS=false \
  -e HTTP_VERSION_MODE=auto \
  mekayelanik/valkey-mcp-server:stable

Access Endpoints

ProtocolEndpointDescription
SHTTPhttp://host-ip:8040/mcpStreamable HTTP (default; exposed simultaneously)
SSEhttp://host-ip:8040/sseServer-Sent Events (exposed simultaneously)
Healthhttp://host-ip:8040/healthzHealth check (answered by HAProxy, sub-millisecond)

When HTTPS is enabled (ENABLE_HTTPS=true), use TLS endpoints:

ProtocolEndpoint
SHTTPhttps://host-ip:8040/mcp
SSEhttps://host-ip:8040/sse

WebSocket transport was dropped in the migration to mcp-proxy. Setting PROTOCOL=WS will now fail at startup with a clear message. Use SHTTP or SSE instead.

Security Warning: The container now defaults to HTTP (ENABLE_HTTPS=false) for easier local setup. Use ENABLE_HTTPS=true for production, public networks, or any untrusted environment.

ARM Devices: Allow 30-60 seconds for initialization before accessing endpoints.


Configuration

Environment Variables

VariableDefaultDescription
PORT8040External HAProxy port
INTERNAL_PORT38011Internal mcp-proxy port (loopback)
MCP_PROXY_STATELESSfalseShare one stdio child across sessions; flip to true for per-request isolation
VALKEY_MAX_MEM_MB0Virtual memory cap on valkey-mcp child (0 disables)
HAPROXY_FRONTEND_MAXCONN(unset)Cap concurrent connections at HAProxy frontend
HAPROXY_SERVER_MAXCONN(unset)Cap concurrent connections to mcp-proxy backend
PUID1000User ID for file permissions
PGID1000Group ID for file permissions
TZUTCContainer timezone (TZ database)
PROTOCOLSHTTPDefault transport protocol
VALKEY_URL(e**y)*Full Valkey connection URL (e.g. valkey://user:pass@host:6379)
VALKEY_HOST127.0.0.1Valkey server hostname
VALKEY_PORT6379Valkey server port
VALKEY_USERNAME(e**y)*Valkey authentication username
VALKEY_PWD(e**y)*Valkey authentication password
VALKEY_USE_SSLfalseEnable SSL for Valkey connection (true/false)
VALKEY_SSL_CA_PATH(e**y)*Path to SSL CA file
VALKEY_SSL_KEYFILE(e**y)*Path to SSL key file
VALKEY_SSL_CERTFILE(e**y)*Path to SSL certificate file
VALKEY_SSL_CERT_REQSrequiredSSL certificate requirements
VALKEY_SSL_CA_CERTS(e**y)*Path to SSL CA certificates
VALKEY_CLUSTER_MODEfalseEnable Valkey Cluster mode (true/false)
VALKEY_READONLY(unset)true → --readonly, false → --no-readonly, unset → upstream default (read-write)
API_KEY(e**y)*Enables Bearer token auth (Authorization: Bearer <API_KEY>)
CORS(e**y)*Comma-separated CORS origins, supports *
ENABLE_HTTPSfalseEnables TLS termination in HAProxy
TLS_CERT_PATH/etc/haproxy/certs/server.crtTLS cert path
TLS_KEY_PATH/etc/haproxy/certs/server.keyTLS private key path
TLS_PEM_PATH/etc/haproxy/certs/server.pemCom***ed PEM file used by HAProxy
TLS_CNlocalhostCN for auto-generated certificate
TLS_SANDNS:<TLS_CN>SAN for auto-generated certificate
TLS_DAYS365Auto-generated cert validity period
TLS_MIN_VERSIONTLSv1.3Minimum TLS protocol (TLSv1.2 or TLSv1.3)
HTTP_VERSION_MODEautoauto, all, h1, h2, h3, h1+h2
RATE_LIMIT0Max requests per RATE_LIMIT_PERIOD per IP (0 = disabled)
RATE_LIMIT_PERIOD10sSliding window for rate limiting (e.g., 10s, 1m, 1h)
MAX_CONNECTIONS_PER_IP0Max concurrent connections per IP (0 = disabled)
IP_ALLOWLIST(e**y)*Comma-separated IPs/CIDRs to allow (all others blocked)
IP_BLOCKLIST(e**y)*Comma-separated IPs/CIDRs to block

HTTPS and HTTP Version Notes

  • If ENABLE_HTTPS=true and cert files are missing, the container auto-generates a self-signed certificate.
  • If TLS_CERT_PATH and TLS_KEY_PATH exist, they are merged into TLS_PEM_PATH and used directly.
  • HTTP_VERSION_MODE=h3 (or auto) enables HTTP/3 only when HAProxy build includes QUIC; otherwise it safely falls back.

API Key Authentication Notes

  • Set API_KEY to enforce authentication at reverse proxy level.
  • Expected header format: Authorization: Bearer <API_KEY>.
  • Localhost health checks remain accessible for liveness/readiness.

Rate Limiting and IP Access Control

  • Rate limiting: Set RATE_LIMIT=100 to allow 100 requests per RATE_LIMIT_PERIOD (default 10s) per IP. Exceeding the limit returns HTTP 429 with a Retry-After header.
  • Connection limiting: Set MAX_CONNECTIONS_PER_IP=50 to cap concurrent connections per IP. Exceeding returns HTTP 429.
  • IP blocklist: Set IP_BLOCKLIST=192.0.2.0/24,198.51.100.5 to block specific IPs/CIDRs. Blocked IPs receive HTTP 403.
  • IP allowlist: Set IP_ALLOWLIST=10.0.0.0/8,192.168.1.0/24 to allow only listed IPs/CIDRs. All others receive HTTP 403. Localhost is always allowed.
  • All features default to disabled. Com***e as needed — blocklist is checked before allowlist.

Memory & Concurrency Tuning

mcp-proxy runs the Valkey MCP backend as a single long-lived stdio child and multiplexes all client sessions through it via JSON-RPC ids. This caps the expected memory footprint; the knobs below cap the worst case:

  • MCP_PROXY_STATELESS=false (default) — share one backend child across all sessions. Recommended for almost every deployment. Flip to true only when you genuinely need per-request isolation.
  • VALKEY_MAX_MEM_MB=1024 — caps the virtual-memory size of the valkey-mcp child via prlimit --as. A runaway backend gets OOM-killed by the kernel before it exhausts the host.
  • HAPROXY_FRONTEND_MAXCONN=64 + HAPROXY_SERVER_MAXCONN=16 — bound concurrent connections at the HAProxy layer so a burst cannot saturate the upstream stdio bridge.
  • /healthz is answered directly by HAProxy with a local 200 — Docker's container healthcheck no longer depends on upstream MCP readiness.

User & Group IDs

Find your IDs and set them to avoid permission issues:

bash
id username
# uid=1000(user) gid=1000(group)

Timezone Examples

yaml
- TZ=Asia/Dhaka        # Bangladesh
- TZ=America/New_York  # US Eastern
- TZ=Europe/London     # UK
- TZ=UTC               # Universal Time

MCP Client Configuration

Transport Support

ClientSHTTPSSERecommended
VS Code (Cline/Roo-Cline)YesYesSHTTP
Claude DesktopYesYesSHTTP
Claude CLIYesYesSHTTP
Codex CLIYesYesSHTTP
Codeium (Windsurf)YesYesSHTTP
CursorYesYesSHTTP

WebSocket transport was dropped in the migration to mcp-proxy.


VS Code (Cline/Roo-Cline)

Configure in .vscode/settings.json:

json
{
  "mcp.servers": {
    "valkey-mcp": {
      "url": "http://host-ip:8040/mcp",
      "transport": "http"
    }
  }
}

Claude Desktop App/Claude Code

With API_KEY:

claude mcp add-json valkey-mcp '{"type":"http","url":"http://localhost:8040/mcp","headers":{"Authorization":"Bearer <YOUR_API_KEY>"}}'

Without API_KEY:

claude mcp add-json valkey-mcp '{"type":"http","url":"http://localhost:8040/mcp"}'

Codex CLI

Configure in ~/.codex/config.json:

json
{
  "mcpServers": {
    "valkey-mcp": {
      "transport": "http",
      "url": "http://host-ip:8040/mcp"
    }
  }
}

Codeium (Windsurf)

Configure in .codeium/mcp_settings.json:

json
{
  "mcpServers": {
    "valkey-mcp": {
      "transport": "http",
      "url": "http://host-ip:8040/mcp"
    }
  }
}

Cursor

Configure in ~/.cursor/mcp.json:

json
{
  "mcpServers": {
    "valkey-mcp": {
      "transport": "http",
      "url": "http://host-ip:8040/mcp"
    }
  }
}

Testing Configuration

Verify with https://github.com/modelcontextprotocol/inspector:

bash
npm install -g @modelcontextprotocol/inspector
mcp-inspector http://host-ip:8040/mcp

Network Configuration

Comparison

Network ModeComplexityPerformanceUse Case
BridgeEasyGoodDefault, isolated
HostModerateExcellentDirect host access
MACVLANAdvancedExcellentDedicated IP

Bridge Network (Default)

yaml
services:
  valkey-mcp-server:
    image: mekayelanik/valkey-mcp-server:stable
    ports:
      - "8040:8040"

Benefits: Container isolation, easy setup, works everywhere Access: http://localhost:8040/mcp


Host Network (Linux Only)

yaml
services:
  valkey-mcp-server:
    image: mekayelanik/valkey-mcp-server:stable
    network_mode: host

Benefits: Maximum performance, no NAT overhead, no port mapping needed ***ations: Linux only, shares host network namespace Access: http://localhost:8040/mcp


MACVLAN Network (Advanced)

yaml
services:
  valkey-mcp-server:
    image: mekayelanik/valkey-mcp-server:stable
    mac_address: "AB:BC:CD:DE:EF:01"
    networks:
      macvlan-net:
        ipv4_address: 192.168.1.100

networks:
  macvlan-net:
    driver: macvlan
    driver_opts:
      parent: eth0
    ipam:
      config:
        - subnet: 192.168.1.0/24
          gateway: 192.168.1.1

Benefits: Dedicated IP, direct LAN access ***ations: Linux only, requires additional setup Access: http://192.168.1.100:8040/mcp


Updating

Docker Compose

bash
docker compose pull
docker compose up -d
docker image prune -f

Docker CLI

bash
docker pull mekayelanik/valkey-mcp-server:stable
docker stop valkey-mcp-server && docker rm valkey-mcp-server
# Run your original docker run command
docker image prune -f

One-Time Update with Watchtower

bash
docker run --rm \
  -v /var/run/docker.sock:/var/run/docker.sock \
  containrrr/watchtower \
  --run-once \
  valkey-mcp-server

Troubleshooting

Pre-Flight Checklist

  • Docker Engine 23.0+
  • Port 8040 available
  • Sufficient startup time (ARM devices)
  • Latest stable image
  • Correct configuration

Common Issues

Container Won't Start

bash
# Check Docker version
docker --version

# Verify port availability
sudo netstat -tulpn | grep 8040

# Check logs
docker logs valkey-mcp-server

Permission Errors

bash
# Get your IDs
id $USER

# Update configuration with correct PUID/PGID
# Fix volume permissions if needed
sudo chown -R 1000:1000 /path/to/volume

Client Cannot Connect

bash
# Test connectivity
curl http://localhost:8040/mcp
curl http://host-ip:8040/mcp
curl -k https://localhost:8040/mcp
curl -k https://host-ip:8040/mcp

# Check firewall
sudo ufw status

# Verify container
docker inspect valkey-mcp-server | grep IPAddress

Slow ARM Performance

  • Wait 30-60 seconds after start
  • Monitor: docker logs -f valkey-mcp-server
  • Check resources: docker stats valkey-mcp-server
  • Use faster storage (SSD vs SD card)

Debug Information

When reporting issues, include:

bash
# System info
docker --version && uname -a

# Container logs
docker logs valkey-mcp-server --tail 200 > logs.txt

# Container config
docker inspect valkey-mcp-server > inspect.json

Additional Resources

Documentation

  • https://github.com/awslabs/mcp
  • https://pypi.org/project/awslabs.valkey-mcp-server/
  • https://github.com/sparfenyuk/mcp-proxy
  • https://github.com/modelcontextprotocol/inspector

Docker Resources

  • https://docs.docker.com/compose/production/
  • https://docs.docker.com/network/
  • https://docs.docker.com/engine/security/

Monitoring

  • https://crazymax.dev/diun/
  • https://containrrr.dev/watchtower/

😎 Buy Me a Coffee ☕︎

Your support encourages me to keep creating/supporting my open-source projects. If you found value in this project, you can buy me a coffee to keep me inspired.

Support & License

Getting Help

Docker Image Issues:

  • GitHub: https://github.com/MekayelAnik/valkey-mcp-docker/issues

Valkey MCP Issues:

  • GitHub: https://github.com/awslabs/mcp/issues

Contributing

We welcome contributions:

  1. Report bugs via GitHub Issues
  2. Suggest features
  3. Improve documentation
  4. Test beta releases

License

GPL License. See https://raw.githubusercontent.com/MekayelAnik/valkey-mcp-docker/refs/heads/main/LICENSE for details.

Valkey MCP server has its own license - see https://github.com/awslabs/mcp.


Back to Top

镜像拉取方式

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

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

docker pull docker.xuanyuan.run/mekayelanik/valkey-mcp-server:<标签>

使用方法:

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

DockerHub 原生拉取命令

docker pull mekayelanik/valkey-mcp-server:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

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

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

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

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
mekayelanik/valkey-mcp-server
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 valkey-mcp-server 镜像推荐

valkey/valkey logo

valkey/valkey

valkey
Valkey 是一款高性能的数据结构服务器,主要专注于为键值(key/value)类型的工作负载提供服务,它凭借优化的数据处理机制和高效的存储结构,能够快速响应各类键值对操作请求,适用于高吞吐量、低延迟的应用场景,通过稳定可靠的运行机制为用户提供高效的数据服务支持。
130 次收藏1亿+ 次下载
14 天前更新
valkey/valkey-bundle logo

valkey/valkey-bundle

valkey
valkey-bundle镜像用于安装valkey服务器并加载所有valkey模块,提供集成了服务器与完整模块的一站式运行环境。
7 次收藏500万+ 次下载
14 天前更新
bitnamicharts/valkey logo

bitnamicharts/valkey

bitnamicharts
Bitnami提供的Valkey Helm chart,用于在Kubernetes环境中便捷部署高性能键值存储数据库Valkey。
3 次收藏500万+ 次下载
17 天前更新
linuxserver/code-server logo

linuxserver/code-server

LinuxServer.io 社区镜像
linuxserver/code-server是VS Code服务器版Docker镜像,可在浏览器中运行完整VS Code开发环境,无需本地安装即可跨设备访问。支持全部VS Code扩展、代码同步与终端功能,适配远程开发、团队协作或低配置设备场景。镜像经linuxserver优化,兼容ARM/AMD架构,内置持久化存储与安全配置,开箱即用,轻松打造云端IDE,提升开发灵活性与效率。
737 次收藏5000万+ 次下载
15 天前更新
linuxserver/openssh-server logo

linuxserver/openssh-server

LinuxServer.io 社区镜像
提供OpenSSH服务器服务,支持远程登录与服务器管理,具备易于部署、配置灵活的特点,适用于各类需要安全远程访问的场景。
146 次收藏1000万+ 次下载
18 天前更新
bitnamicharts/valkey-cluster logo

bitnamicharts/valkey-cluster

bitnamicharts
Bitnami的Valkey Cluster Helm chart,用于在Kubernetes上部署和管理Valkey集群,提供易用可靠的容器化解决方案。
50万+ 次下载
10 个月前更新

查看更多 valkey-mcp-server 相关镜像