Tianhe Gao

使用 Calibre-Web 在线管理本地书籍

通过 Docker Compose 方式安装 Calibre-Web:

 1version: "2.1"
 2services:
 3  calibre-web:
 4    image: linuxserver/calibre-web:latest
 5    container_name: calibre-web
 6    environment:
 7      - PUID=1000
 8      - PGID=1000
 9      - TZ=Asia/Shanghai
10    volumes:
11      - ./config:/config
12      - ./library:/config/Calibre Library
13    ports:
14      - 8083:8083
15    restart: unless-stopped

在添加数据库的时候遇到问题:总是无法添加。 DB Location is not Valid, Please Enter Correct Path 。上面的配置是修改后的正确配置。

参考资料:

  1. janeczku/calibre-web
  2. 使用 calibre 搭建私人书库 | 眈眈探求
  3. linuxserver/calibre-web

No notes link to this note

Welcome to tell me your thoughts via "email"
UP