Docker 搭建 calibre-web

官网地址:https://hub.docker.com/r/technosoft2000/calibre-web

1.获取 Docker 镜像:

docker pull technosoft2000/calibre-web

  1. 启动 calibre-web:
    docker create --name=calibre-web --restart=always \
    -v /data/calibre/books:/books \
    -v /data/calibre/config:/calibre-web/config \
    -e USE_CONFIG_DIR=true \
    -e SET_CONTAINER_TIMEZONE=true \
    -e CONTAINER_TIMEZONE=Asia/Shanghai \
    -e PGID=65539 -e PUID=1029 \
    -p 8083:8083 \
    technosoft2000/calibre-web

3.上传 calibre 的 metadata.db 文件: 将metadata.db 文件文件上传到轻量应用服务器的/data/caliber/books 目录下。

4.登陆 calibre-web: 在浏览器地址栏访问轻量应用服务器的IP地址,默认的用户名为admin,密码为admin123;配置书库地址为 /books,然后点击保存。

Tagged on: , ,

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.