Overview
- Full name
docker.io/wechatpadpro/redis- Registry
- docker.io
- Namespace
- wechatpadpro
- Repository
- redis
- Cached tags
- 1
- Last synced
- 07/05/2026, 09:48 AM
- Topics
Introduction
WeChatPadPro Redis 镜像,WeChatPad 微信 iPad 协议项目配套 Redis 缓存,消息队列与会话状态存储组件。
Details
wechatpadpro/redis 为 WeChatPadPro 项目提供 Redis 缓存服务构建,存储会话状态、消息队列与临时数据。定位为 WeChatPad 配套 Redis 服务,需 wechatpadpro 主服务;微信 iPad 协议私有化部署缓存层、会话状态存储或 WeChatPad 生态配套组件。
快速启动
docker run -d --name wechatpad-redis \
-p 6379:6379 \
docker.io/wechatpadpro/redis:latest
推荐实践
docker run -d --name wechatpad-redis \
--restart unless-stopped \
-p 6379:6379 \
-v /data/wechatpad-redis:/data \
docker.io/wechatpadpro/redis:7.0
核心参数说明
-p 6379:6379— Redis 端口-v .../data:...— 持久化(可选)- 配对 — WeChatPadPro 主服务
- 数据 — 会话含敏感信息
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: wechatpad-redis
spec:
replicas: 1
selector:
matchLabels:
app: wechatpad-redis
template:
metadata:
labels:
app: wechatpad-redis
spec:
containers:
- name: redis
image: docker.io/wechatpadpro/redis:7.0
ports:
- containerPort: 6379
volumeMounts:
- name: data
mountPath: /data
volumes:
- name: data
persistentVolumeClaim:
claimName: wechatpad-redis-data
---
apiVersion: v1
kind: Service
metadata:
name: wechatpad-redis
spec:
selector:
app: wechatpad-redis
ports:
- port: 6379
targetPort: 6379
与 WeChatPadPro 同 namespace。
Latest tags (20)
View all 1 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/wechatpadpro/redis :6 | linux/amd64 | 2025/08/25 14:54 | 38.3 MB | sha256:10911505e80a… |