使用 Calibre-Web 在线管理本地书籍
通过 Docker Compose 方式安装 Calibre-Web:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| version: "2.1"
services:
calibre-web:
image: linuxserver/calibre-web:latest
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
volumes:
- ./config:/config
- ./library:/config/Calibre Library
ports:
- 8083:8083
restart: unless-stopped
|
在添加数据库的时候遇到问题:总是无法添加。 DB Location is not Valid, Please Enter Correct Path
。上面的配置是修改后的正确配置。
参考资料:
- janeczku/calibre-web
- 使用 calibre 搭建私人书库 | 眈眈探求
- linuxserver/calibre-web
评论和交流请发送邮件到 me@tianhegao.com