Skip to content

Commit

Permalink
add calibre volume for database (#6167)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 30, 2024
1 parent 9e57177 commit 8e0ecaf
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
6 changes: 3 additions & 3 deletions apps/calibre-web/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Binary file added apps/calibre-web/data/calibre/metadata.db
Binary file not shown.
4 changes: 4 additions & 0 deletions apps/calibre-web/docker-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions apps/calibre-web/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions apps/calibre-web/metadata/description.md
Original file line number Diff line number Diff line change
@@ -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
<br />

0 comments on commit 8e0ecaf

Please sign in to comment.