mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-06-28 06:46:23 +00:00
If you run into Error 500 - Internal Server Error after the installation, and find that calibre-web is unable to find the metadata.db file in /books
Download the metadata.db file from this repository and follow these steps:
Create /books folder on your container and chmod
docker exec -it CONTAINER_ID mkdir /books
docker exec -it CONTAINER_ID chmod a+w /books
Place the metadata.db file on the /books path and modifty to be writeable
docker cp /path/METADATA.DB.FILE CONTAINER_ID:/books/
docker exec -it CONTAINER_ID chmod a+w /books/METADATA.DB.FILE
Verify
docker exec -it CONTAINER_ID ls -lah /books
Credit to tikg's comment on the linuxserver/docker-calibre-web repository and @viniciuspaes for pointing this out.