通过 Docker Compose 方式安装 Calibre-Web:
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
。上面的配置是修改后的正确配置。
参考资料: