ext4/xfs 文件系统供容器挂载
Docker中使用Ceph RBD需通过rbd插件或ceph-csi驱动实现;推荐生产环境用ceph-csi+Kubernetes,小规模可用docker-volume-rbd插件;注意权限、内核模块、网络及镜像特性配置。
如何在docker内挂载ceph块存储作为容器数据卷存储后端
在 Docker 中使用 Ceph 块设备(RBD)作为容器数据卷后端,核心是通过 rbd 插件或 ceph-csi 驱动实现持久化存储挂载。Docker 原生不直接支持 RBD 卷类型,需借助第三方插件或转向更主流的 CSI 方案。以下提供两种切实可行、生产可用的方式:
方式一:使用 docker-volume-rbd 插件(轻量级,适合小规模部署)
该插件将 RBD 映射为本地块设备,并创建
。
确保宿主机已安装 ceph-common 和 rbd 工具,并能访问 Ceph 集群(/etc/ceph/ceph.conf 与 /etc/ceph/ceph.client.admin.keyring 可用)
安装插件:docker plugin install --grant-all-permissions ceph/rbd(官方镜像已归档,推荐使用社区维护版如 linode/docker-volume-rbd 或自建构建)
创建 RBD 镜像(如 rbd create rbd/myvol --size 10G --image-feature layering),并确保启用 layering 特性以支持克隆
启动容器时指定卷:docker run -v myvol:/data --volume-driver rbd -it alpine sh,插件会自动映射 RBD 镜像、格式化(首次)、挂载到容器内
方式二:通过 ceph-csi + Docker swarm 或 Kubernetes(推荐用于生产环境)
Docker Engine 本身不原生集成 CSI,但可在 Swarm 模式下配合 csi-plugins 使用,或更稳妥地迁移到 Kubernetes(CSI 是其标准存储接口)。
神采PromeAI
神采PromeAI
将涂鸦和照片转化为插画,将线稿转化为完整的上色稿。
下载
部署 ceph-csi(v3.8+ 支持 RBD 和 CephFS),配置 CsiDriver、StorageClass 和 Secret(含 Ceph 用户密钥)
在 Kubernetes 中创建 PersistentVolumeClaim,绑定到 RBD backend:storageClassName: rook-ceph-block(示例名)
若坚持用 Docker Swarm,可借助 实验性 CSI 支持 或使用 docker volume create 调用外部卷驱动(需自行封装 CSI 调用逻辑)
注意:RBD 镜像默认为独占读写(RWO),多容器读写需改用 CephFS 或 RBD 的 exclusive-lock 关闭 + 共享文件系统(不推荐)
关键注意事项与排错要点
无论采用哪种方式,以下细节决定是否成功:
权限与密钥:插件或 CSI 容器必须能读取 Ceph client keyring;建议创建专用用户(如 client.rbd-docker)并限制 caps:mon 'profile rbd' mds 'allow rw' osd 'profile rbd pool=rbd'
内核模块支持:宿主机需加载 rbd 模块(modprobe rbd),部分云厂商内核可能禁用;可改用 rbd-nbd 后端(需安装 qemu-nbd)
网络连通性:Docker 宿主机必须能直连 Ceph monitor(6789 端口)和 OSD(6800–7300 端口),防火墙与安全组需放行
镜像特性兼容性:RBD 镜像必须启用 layering(快照/克隆依赖),创建时加 --image-feature layering;禁用 deep-flatten 避免 CSI 删除失败
替代方案:使用 CephFS(更适合 Docker 多容器共享场景)
https://weibo.com/ttarticle/p/show?id=2309405294456525422791
https://weibo.com/ttarticle/p/show?id=2309405294456676417575
https://weibo.com/ttarticle/p/show?id=2309405294456822956242
https://weibo.com/ttarticle/p/show?id=2309405294456986796072
https://weibo.com/ttarticle/p/show?id=2309405294457133334930
https://weibo.com/ttarticle/p/show?id=2309405294457305563185
https://weibo.com/ttarticle/p/show?id=2309405294457489850467
https://weibo.com/ttarticle/p/show?id=2309405294457636651137
https://weibo.com/ttarticle/p/show?id=2309405294457813074076
https://weibo.com/ttarticle/p/show?id=2309405294457980584068
https://weibo.com/ttarticle/p/show?id=2309405294458127384766
https://weibo.com/ttarticle/p/show?id=2309405294391446601815
https://weibo.com/ttarticle/p/show?id=2309405294391509516482
https://weibo.com/ttarticle/p/show?id=2309405294432701513741
https://weibo.com/ttarticle/p/show?id=2309405294432773079177
https://weibo.com/ttarticle/p/show?id=2309405294432835993863
https://weibo.com/ttarticle/p/show?id=2309405294432907034867
https://weibo.com/ttarticle/p/show?id=2309405294432974143559
https://weibo.com/ttarticle/p/show?id=2309405294433041252641
https://weibo.com/ttarticle/p/show?id=2309405294433108361333
https://weibo.com/ttarticle/p/show?id=2309405294433175732422
https://weibo.com/ttarticle/p/show?id=2309405294433238646934
https://weibo.com/ttarticle/p/show?id=2309405294433305755732
https://weibo.com/ttarticle/p/show?id=2309405294433372602414
https://weibo.com/ttarticle/p/show?id=2309405294433456488493
https://weibo.com/ttarticle/p/show?id=2309405294433527791810
https://weibo.com/ttarticle/p/show?id=2309405294433603551286
https://weibo.com/ttarticle/p/show?id=2309405294433678786578
https://weibo.com/ttarticle/p/show?id=2309405294433750351972
https://weibo.com/ttarticle/p/show?id=2309405294433825849366
https://weibo.com/ttarticle/p/show?id=2309405294433888764078
https://weibo.com/ttarticle/p/show?id=2309405294433964261450
https://weibo.com/ttarticle/p/show?id=2309405294434039758862
https://weibo.com/ttarticle/p/show?id=2309405294434114994225
https://weibo.com/ttarticle/p/show?id=2309405294438313492592
https://weibo.com/ttarticle/p/show?id=2309405294438380601608
https://weibo.com/ttarticle/p/show?id=2309405294438447972451
https://weibo.com/ttarticle/p/show?id=2309405294438510887329
https://weibo.com/ttarticle/p/show?id=2309405294438603161641
https://weibo.com/ttarticle/p/show?id=2309405294438666076437
https://weibo.com/ttarticle/p/show?id=2309405294438733185147
https://weibo.com/ttarticle/p/show?id=2309405294438800293903
https://weibo.com/ttarticle/p/show?id=2309405294438862946402
https://weibo.com/ttarticle/p/show?id=2309405294438926123460
https://weibo.com/ttarticle/p/show?id=2309405294438992969826
https://weibo.com/ttarticle/p/show?id=2309405294439056146558
https://weibo.com/ttarticle/p/show?id=2309405294439118798940
https://weibo.com/ttarticle/p/show?id=2309405294439282377066
https://weibo.com/ttarticle/p/show?id=2309405294439345291384
https://weibo.com/ttarticle/p/show?id=2309405294439408468062
https://weibo.com/ttarticle/p/show?id=2309405294439471120715
https://weibo.com/ttarticle/p/show?id=2309405294439534035127
https://weibo.com/ttarticle/p/show?id=2309405294439597211998
https://weibo.com/ttarticle/p/show?id=2309405294439689486474
https://weibo.com/ttarticle/p/show?id=2309405294439802470606
https://weibo.com/ttarticle/p/show?id=2309405294423780229185
https://weibo.com/ttarticle/p/show?id=2309405294423851794484
https://weibo.com/ttarticle/p/show?id=2309405294423910514833
https://weibo.com/ttarticle/p/show?id=2309405294423969235194
https://weibo.com/ttarticle/p/show?id=2309405294424057053327
https://weibo.com/ttarticle/p/show?id=2309405294424174755877
https://weibo.com/ttarticle/p/show?id=2309405294424233476481
https://weibo.com/ttarticle/p/show?id=2309405294424292196504
https://weibo.com/ttarticle/p/show?id=2309405294424354849127
https://weibo.com/ttarticle/p/show?id=2309405294424413569218
https://weibo.com/ttarticle/p/show?id=2309405294424476483816
https://weibo.com/ttarticle/p/show?id=2309405294424539398166
https://weibo.com/ttarticle/p/show?id=2309405294424598381086
https://weibo.com/ttarticle/p/show?id=2309405294424661032988
https://weibo.com/ttarticle/p/show?id=2309405294424740986894
https://weibo.com/ttarticle/p/show?id=2309405294424820678747
https://weibo.com/ttarticle/p/show?id=2309405294424883331256
https://weibo.com/ttarticle/p/show?id=2309405294424942313601
https://weibo.com/ttarticle/p/show?id=2309405294425001034194
https://weibo.com/ttarticle/p/show?id=2309405294425063948700
https://weibo.com/ttarticle/p/show?id=2309405294425126862933
https://weibo.com/ttarticle/p/show?id=2309405294425185583467
https://weibo.com/ttarticle/p/show?id=2309405294425248497720
https://weibo.com/ttarticle/p/show?id=2309405294425311150235
https://weibo.com/ttarticle/p/show?id=2309405294425374064950
https://weibo.com/ttarticle/p/show?id=2309405294425432785238
https://weibo.com/ttarticle/p/show?id=2309405294425495699555
https://weibo.com/ttarticle/p/show?id=2309405294425558614037
https://weibo.com/ttarticle/p/show?id=2309405294425617596746
https://weibo.com/ttarticle/p/show?id=2309405294425676316977
https://weibo.com/ttarticle/p/show?id=2309405294426145816788
https://weibo.com/ttarticle/p/show?id=2309405294426217382079
https://weibo.com/ttarticle/p/show?id=2309405294426284490869
https://weibo.com/ttarticle/p/show?id=2309405294426435223731
https://weibo.com/ttarticle/p/show?id=2309405294426510721093
https://weibo.com/ttarticle/p/show?id=2309405294426573635771
https://weibo.com/ttarticle/p/show?id=2309405294426636550402
https://weibo.com/ttarticle/p/show?id=2309405294426699464882
https://weibo.com/ttarticle/p/show?id=2309405294426762641711
https://weibo.com/ttarticle/p/show?id=2309405294426833944612
https://weibo.com/ttarticle/p/show?id=2309405294426892665146
https://weibo.com/ttarticle/p/show?id=2309405294427207237739
https://weibo.com/ttarticle/p/show?id=2309405294427324678423
https://weibo.com/ttarticle/p/show?id=2309405294427416953383
https://weibo.com/ttarticle/p/show?id=2309405294427484062151
https://weibo.com/ttarticle/p/show?id=2309405294427567948110
https://weibo.com/ttarticle/p/show?id=2309405294427647639734
https://weibo.com/ttarticle/p/show?id=2309405294428549152794
https://weibo.com/ttarticle/p/show?id=2309405294428637233525
https://weibo.com/ttarticle/p/show?id=2309405294428717187548
https://weibo.com/ttarticle/p/show?id=2309405294428897280059
https://weibo.com/ttarticle/p/show?id=2309405294428985360432
https://weibo.com/ttarticle/p/show?id=2309405294429065052330
https://weibo.com/ttarticle/p/show?id=2309405294430117822653
https://weibo.com/ttarticle/p/show?id=2309405294430268817755
https://weibo.com/ttarticle/p/show?id=2309405294430415618143
https://weibo.com/ttarticle/p/show?id=2309405294430558224661
https://weibo.com/ttarticle/p/show?id=2309405294430701092945
https://weibo.com/ttarticle/p/show?id=2309405294430847893516
https://weibo.com/ttarticle/p/show?id=2309405294430990237819
https://weibo.com/ttarticle/p/show?id=2309405294431132844148
https://weibo.com/ttarticle/p/show?id=2309405294431275712880
https://weibo.com/ttarticle/p/show?id=2309405294431418319030
https://weibo.com/ttarticle/p/show?id=2309405294431564857398
https://weibo.com/ttarticle/p/show?id=2309405294431707463848
https://weibo.com/ttarticle/p/show?id=2309405294431850332513
https://weibo.com/ttarticle/p/show?id=2309405294432009715920
https://weibo.com/ttarticle/p/show?id=2309405294432286540041
https://weibo.com/ttarticle/p/show?id=2309405294432437272730
https://weibo.com/ttarticle/p/show?id=2309405294432605044987
https://weibo.com/ttarticle/p/show?id=2309405294432752107721
https://weibo.com/ttarticle/p/show?id=2309405294432902840499
https://weibo.com/ttarticle/p/show?id=2309405294433104429099
https://weibo.com/ttarticle/p/show?id=2309405294433335115989
https://weibo.com/ttarticle/p/show?id=2309405294433494237293
https://weibo.com/ttarticle/p/show?id=2309405294433741963412
https://weibo.com/ttarticle/p/show?id=2309405294433892696221
https://weibo.com/ttarticle/p/show?id=2309405294434052079806
https://weibo.com/ttarticle/p/show?id=2309405294434203074584
https://weibo.com/ttarticle/p/show?id=2309405294434350137403
https://weibo.com/ttarticle/p/show?id=2309405294437336219696
https://weibo.com/ttarticle/p/show?id=2309405294437499797553
https://weibo.com/ttarticle/p/show?id=2309405294437663375395
https://weibo.com/ttarticle/p/show?id=2309405294437818826957
https://weibo.com/ttarticle/p/show?id=2309405294437982142507
https://weibo.com/ttarticle/p/show?id=2309405294438141526168
https://weibo.com/ttarticle/p/show?id=2309405294438301171962
https://weibo.com/ttarticle/p/show?id=2309405294438565150771
https://weibo.com/ttarticle/p/show?id=2309405294438816809004
https://weibo.com/ttarticle/p/show?id=2309405294438989037663
https://weibo.com/ttarticle/p/show?id=2309405294439152615442
https://weibo.com/ttarticle/p/show?id=2309405294439345291310
https://weibo.com/ttarticle/p/show?id=2309405294439513063482
https://weibo.com/ttarticle/p/show?id=2309405294408500641940
https://weibo.com/ttarticle/p/show?id=2309405294408634859660
https://weibo.com/ttarticle/p/show?id=2309405294408768815430
https://weibo.com/ttarticle/p/show?id=2309405294408882323588
https://weibo.com/ttarticle/p/show?id=2309405294408945238189
https://weibo.com/ttarticle/p/show?id=2309405294409012346970
https://weibo.com/ttarticle/p/show?id=2309405294409095970833
https://weibo.com/ttarticle/p/show?id=2309405294409188507867
https://weibo.com/ttarticle/p/show?id=2309405294409259810899
https://weibo.com/ttarticle/p/show?id=2309405294409347629379
https://weibo.com/ttarticle/p/show?id=2309405294409456680985
https://weibo.com/ttarticle/p/show?id=2309405294411780587849
https://weibo.com/ttarticle/p/show?id=2309405294411868405921
https://weibo.com/ttarticle/p/show?id=2309405294411956486275
https://weibo.com/ttarticle/p/show?id=2309405294412052955142
https://weibo.com/ttarticle/p/show?id=2309405294412141297673
https://weibo.com/ttarticle/p/show?id=2309405294412229116002
https://weibo.com/ttarticle/p/show?id=2309405294414116552835
https://weibo.com/ttarticle/p/show?id=2309405294414179467550
https://weibo.com/ttarticle/p/show?id=2309405294414246838661
https://weibo.com/ttarticle/p/show?id=2309405294414318141540
https://weibo.com/ttarticle/p/show?id=2309405294414385250542
https://weibo.com/ttarticle/p/show?id=2309405294414456291383
https://weibo.com/ttarticle/p/show?id=2309405294414594965837
https://weibo.com/ttarticle/p/show?id=2309405294414666006750
https://weibo.com/ttarticle/p/show?id=2309405294414921859182
https://weibo.com/ttarticle/p/show?id=2309405294415047688589
https://weibo.com/ttarticle/p/show?id=2309405294415119253648
https://weibo.com/ttarticle/p/show?id=2309405294415215722578
https://weibo.com/ttarticle/p/show?id=2309405294415290958053
https://weibo.com/ttarticle/p/show?id=2309405294415370912220
https://weibo.com/ttarticle/p/show?id=2309405294415471312955
https://weibo.com/ttarticle/p/show?id=2309405294416180150494
https://weibo.com/ttarticle/p/show?id=2309405294416238870910
https://weibo.com/ttarticle/p/show?id=2309405294416301785393
https://weibo.com/ttarticle/p/show?id=2309405294416373350480
https://weibo.com/ttarticle/p/show?id=2309405294416478208363
https://weibo.com/ttarticle/p/show?id=2309405294416561832305
https://weibo.com/ttarticle/p/show?id=2309405294416675340582
https://weibo.com/ttarticle/p/show?id=2309405294416776003728
https://weibo.com/ttarticle/p/show?id=2309405294416897638659
https://weibo.com/ttarticle/p/show?id=2309405294416989913135
https://weibo.com/ttarticle/p/show?id=2309405294417077993733
https://weibo.com/ttarticle/p/show?id=2309405294417140645909
https://weibo.com/ttarticle/p/show?id=2309405294417199366274
https://weibo.com/ttarticle/p/show?id=2309405294417262280914
https://weibo.com/ttarticle/p/show?id=2309405294417321263393
https://weibo.com/ttarticle/p/show?id=2309405294417384177698
https://weibo.com/ttarticle/p/show?id=2309405294417442898304
https://weibo.com/ttarticle/p/show?id=2309405294417505812485
https://weibo.com/ttarticle/p/show?id=2309405294417564270687
https://weibo.com/ttarticle/p/show?id=2309405294417623253282
https://weibo.com/ttarticle/p/show?id=2309405294417685905520
https://weibo.com/ttarticle/p/show?id=2309405294417744887929
https://weibo.com/ttarticle/p/show?id=2309405294417803346155
https://weibo.com/ttarticle/p/show?id=2309405294417862066514
https://weibo.com/ttarticle/p/show?id=2309405294417933369436
https://weibo.com/ttarticle/p/show?id=2309405294417992089974
https://weibo.com/ttarticle/p/show?id=2309405294418050810404
https://weibo.com/ttarticle/p/show?id=2309405294418130764308
https://weibo.com/ttarticle/p/show?id=2309405294418193678507
https://weibo.com/ttarticle/p/show?id=2309405294418252398778
https://weibo.com/ttarticle/p/show?id=2309405294418315051312
https://weibo.com/ttarticle/p/show?id=2309405294418382422386
https://weibo.com/ttarticle/p/show?id=2309405294418445074462
https://weibo.com/ttarticle/p/show?id=2309405294418503794855
https://weibo.com/ttarticle/p/show?id=2309405294418566709329
https://weibo.com/ttarticle/p/show?id=2309405294418625691880
https://weibo.com/ttarticle/p/show?id=2309405294418692800572
https://weibo.com/ttarticle/p/show?id=2309405294418751520945
https://weibo.com/ttarticle/p/show?id=2309405294418814173189
https://weibo.com/ttarticle/p/show?id=2309405294418873155870
https://weibo.com/ttarticle/p/show?id=2309405294419585925464
https://weibo.com/ttarticle/p/show?id=2309405294419653034118
https://weibo.com/ttarticle/p/show?id=2309405294419716210927
https://weibo.com/ttarticle/p/show?id=2309405294419787251757
https://weibo.com/ttarticle/p/show?id=2309405294419850166371
https://weibo.com/ttarticle/p/show?id=2309405294419917537296
https://weibo.com/ttarticle/p/show?id=2309405294419980451960
https://weibo.com/ttarticle/p/show?id=2309405294420043104552
https://weibo.com/ttarticle/p/show?id=2309405294420114407619
https://weibo.com/ttarticle/p/show?id=2309405294420177322323
https://weibo.com/ttarticle/p/show?id=2309405294420240236678
https://weibo.com/ttarticle/p/show?id=2309405294420303151344
https://weibo.com/ttarticle/p/show?id=2309405294420370260078
https://weibo.com/ttarticle/p/show?id=2309405294420437631017
https://weibo.com/ttarticle/p/show?id=2309405294420504739896
https://weibo.com/ttarticle/p/show?id=2309405294420575780993
https://weibo.com/ttarticle/p/show?id=2309405294420643152190
https://weibo.com/ttarticle/p/show?id=2309405294420710260782
https://weibo.com/ttarticle/p/show?id=2309405294420802273591
https://weibo.com/ttarticle/p/show?id=2309405294420865188094
https://weibo.com/ttarticle/p/show?id=2309405294420940947506
https://weibo.com/ttarticle/p/show?id=2309405294421007794358
https://weibo.com/ttarticle/p/show?id=2309405294421074903207
https://weibo.com/ttarticle/p/show?id=2309405294421138079802
https://weibo.com/ttarticle/p/show?id=2309405294421200994315
https://weibo.com/ttarticle/p/show?id=2309405294421263909025
https://weibo.com/ttarticle/p/show?id=2309405294421331017751
https://weibo.com/ttarticle/p/show?id=2309405294421398126598
https://weibo.com/ttarticle/p/show?id=2309405294421494333744
https://weibo.com/ttarticle/p/show?id=2309405294421561442416
https://weibo.com/ttarticle/p/show?id=2309405294421628813559
https://weibo.com/ttarticle/p/show?id=2309405294421708243338
https://weibo.com/ttarticle/p/show?id=2309405294421771157667
https://weibo.com/ttarticle/p/show?id=2309405294421834072389
https://weibo.com/ttarticle/p/show?id=2309405294421896986712
https://weibo.com/ttarticle/p/show?id=2309405294421959901572
https://weibo.com/ttarticle/p/show?id=2309405294422052176137
https://weibo.com/ttarticle/p/show?id=2309405294422119547330
https://weibo.com/ttarticle/p/show?id=2309405294422198976524
https://weibo.com/ttarticle/p/show?id=2309405294422270279878
https://weibo.com/ttarticle/p/show?id=2309405294497012777057
https://weibo.com/ttarticle/p/show?id=2309405294497159577704
https://weibo.com/ttarticle/p/show?id=2309405294497310834712
https://weibo.com/ttarticle/p/show?id=2309405294497453179173
https://weibo.com/ttarticle/p/show?id=2309405294497600241985
https://weibo.com/ttarticle/p/show?id=2309405294497747042548
https://weibo.com/ttarticle/p/show?id=2309405294497893581107
https://weibo.com/ttarticle/p/show?id=2309405294498044837898
https://weibo.com/ttarticle/p/show?id=2309405294498191376412
https://weibo.com/ttarticle/p/show?id=2309405294498338439533
https://weibo.com/ttarticle/p/show?id=2309405294498484977753
https://weibo.com/ttarticle/p/show?id=2309405294498631778507
https://weibo.com/ttarticle/p/show?id=2309405294498782773287
https://weibo.com/ttarticle/p/show?id=2309405294498929836070
https://weibo.com/ttarticle/p/show?id=2309405294499076374841
https://weibo.com/ttarticle/p/show?id=2309405294499223175548
https://weibo.com/ttarticle/p/show?id=2309405294499370238143
https://weibo.com/ttarticle/p/show?id=2309405294499541942565
https://weibo.com/ttarticle/p/show?id=2309405294499692937330
https://weibo.com/ttarticle/p/show?id=2309405294499848126558
https://weibo.com/ttarticle/p/show?id=2309405294499999383661
https://weibo.com/ttarticle/p/show?id=2309405294500150116415
https://weibo.com/ttarticle/p/show?id=2309405294500301373500
https://weibo.com/ttarticle/p/show?id=2309405294500452106300
https://weibo.com/ttarticle/p/show?id=2309405294500603363488
https://weibo.com/ttarticle/p/show?id=2309405294500758290608
https://weibo.com/ttarticle/p/show?id=2309405294500909547662
https://weibo.com/ttarticle/p/show?id=2309405294501064474637
https://weibo.com/ttarticle/p/show?id=2309405294501223858263
https://weibo.com/ttarticle/p/show?id=2309405294502222364677
https://weibo.com/ttarticle/p/show?id=2309405294503665205293
