概要
- フル名
docker.io/dezhao/shiori_cn- Registry
- docker.io
- 名前空間
- dezhao
- リポジトリ
- shiori_cn
- キャッシュ Tag 数
- 7
- 最終同期
- 07/06/2026, 09:36 PM
概要
Shiori 极简书签管理器的汉化构建镜像,提供 Web 界面保存与全文检索链接,使用 SQLite 存储,需挂载数据卷持久化。
詳細
Shiori 是轻量级自托管书签服务,支持 Web 剪藏、标签分类与全文搜索;dezhao/shiori_cn 在官方基础上提供中文界面优化。数据默认存于 SQLite 文件,务必挂载 /shiori 或等价路径避免容器重建丢数据。适合个人知识管理与跨设备书签同步(配合反向代理与 HTTPS);首次访问需创建管理员账户。
快速启动
docker run -d --name shiori \
-p 8080:8080 \
-v shiori_data:/shiori \
docker.io/dezhao/shiori_cn:latest
推荐实践
docker run -d --name shiori \
--restart unless-stopped \
-p 8080:8080 \
-v shiori_data:/shiori \
-e SHIORI_HTTP_SECRET_KEY=$(openssl rand -hex 32) \
-e TZ=Asia/Shanghai \
docker.io/dezhao/shiori_cn:1.7.0
核心参数说明
-v shiori_data:/shiori— 持久化 SQLite 与配置-p 8080:8080— Web 界面默认端口-e SHIORI_HTTP_SECRET_KEY— Session 签名密钥--restart unless-stopped— 书签服务自动恢复- 公网访问建议经 HTTPS 反向代理
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: shiori-cn
spec:
replicas: 1
selector:
matchLabels:
app: shiori
template:
metadata:
labels:
app: shiori
spec:
containers:
- name: shiori
image: docker.io/dezhao/shiori_cn:1.7.0
ports:
- containerPort: 8080
volumeMounts:
- name: data
mountPath: /shiori
volumes:
- name: data
persistentVolumeClaim:
claimName: shiori-data
---
apiVersion: v1
kind: Service
metadata:
name: shiori
spec:
selector:
app: shiori
ports:
- port: 8080
targetPort: 8080
需创建 PVC 持久化 SQLite,并按集群 StorageClass 调整卷声明。
最新 Tag(20 件)
すべての 7 件の Tag を見る →| Tag | アーキテクチャ | プッシュ日時 | サイズ | Digest | 同期 | 期望 | 操作 |
|---|---|---|---|---|---|---|---|
docker.io/dezhao/shiori_cn :latest | linux/amd64linux/arm64linux/arm/v7 | 2026/06/20 00:48 | 57.2 MB | sha256:429bc726d715… | |||
docker.io/dezhao/shiori_cn :1.8.0 | linux/amd64linux/arm64linux/arm/v7 | 2026/06/20 00:48 | 57.2 MB | sha256:429bc726d715… | |||
docker.io/dezhao/shiori_cn :1.7.4 | linux/amd64linux/arm64/v8linux/arm/v7 | 2025/02/25 21:57 | 16.6 MB | sha256:4e1413a31807… | |||
docker.io/dezhao/shiori_cn :1.7.1 | linux/amd64linux/arm64linux/arm/v7 | 2024/10/30 00:02 | 16.6 MB | sha256:ce466c6a8ab9… | |||
docker.io/dezhao/shiori_cn :1.5.4 | linux/amd64linux/arm/v6linux/arm/v7linux/arm64 | 2023/04/02 00:02 | 0.0 MB | sha256:bae16dd464e4… | |||
docker.io/dezhao/shiori_cn :1.5.3 | linux/arm/v6linux/arm/v7linux/arm64linux/amd64 | 2022/08/25 00:35 | 9.5 MB | sha256:7c4dd2c6f58d… | |||
docker.io/dezhao/shiori_cn :1.5.2 | linux/amd64linux/arm/v6linux/arm/v7linux/arm64 | 2022/05/20 01:17 | 10.0 MB | sha256:63f7b62e47af… |