diff --git a/apps/calibre-web/config.json b/apps/calibre-web/config.json index dd8951bb27..5ec8f8f4f9 100644 --- a/apps/calibre-web/config.json +++ b/apps/calibre-web/config.json @@ -5,16 +5,16 @@ "exposable": true, "dynamic_config": true, "port": 8100, - "tipi_version": 12, + "tipi_version": 13, "version": "0.6.24", "id": "calibre-web", "categories": ["books"], - "description": "On the initial setup screen, enter /books as your calibre library location. \n Default admin login: Username: admin Password: admin123", + "description": "On the initial setup screen, enter /calibre as your calibre library location, check box Separate Book Files from Library, then enter /books. \n Default admin login: Username: admin Password: admin123", "short_desc": "Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.", "author": "https://github.com/janeczku/", "source": "https://github.com/janeczku/calibre-web", "form_fields": [], "supported_architectures": ["arm64", "amd64"], "created_at": 1691943801422, - "updated_at": 1735481892914 + "updated_at": 1735505691488 } diff --git a/apps/calibre-web/data/calibre/metadata.db b/apps/calibre-web/data/calibre/metadata.db new file mode 100644 index 0000000000..c32a5867d0 Binary files /dev/null and b/apps/calibre-web/data/calibre/metadata.db differ diff --git a/apps/calibre-web/docker-compose.json b/apps/calibre-web/docker-compose.json index 47b7c581a0..eaf9a4403f 100644 --- a/apps/calibre-web/docker-compose.json +++ b/apps/calibre-web/docker-compose.json @@ -15,6 +15,10 @@ "hostPath": "${APP_DATA_DIR}/data/config", "containerPath": "/config" }, + { + "hostPath": "${APP_DATA_DIR}/data/calibre", + "containerPath": "/calibre" + }, { "hostPath": "${ROOT_FOLDER_HOST}/media/data/books", "containerPath": "/books" diff --git a/apps/calibre-web/docker-compose.yml b/apps/calibre-web/docker-compose.yml index 035cf6424a..b89311f383 100644 --- a/apps/calibre-web/docker-compose.yml +++ b/apps/calibre-web/docker-compose.yml @@ -9,6 +9,7 @@ services: - TZ=${TZ} volumes: - ${APP_DATA_DIR}/data/config:/config + - ${ROOT_FOLDER_HOST}/media/data/calibre:/calibre - ${ROOT_FOLDER_HOST}/media/data/books:/books ports: - ${APP_PORT}:8083 diff --git a/apps/calibre-web/metadata/description.md b/apps/calibre-web/metadata/description.md index 795e2a5b2f..f236ae4e3c 100644 --- a/apps/calibre-web/metadata/description.md +++ b/apps/calibre-web/metadata/description.md @@ -1,7 +1,10 @@ Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using a valid Calibre database. -On the initial setup screen, enter /books as your calibre library location. +#### On the initial setup screen : +1. Enter `/calibre` as your calibre library location. +2. Check box : *Separate Book Files from Library* +3. Enter `/books` as book path. +#### Default credentials : - **username**: admin - **password**: admin123 -
\ No newline at end of file