mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-08-24 20:36:12 +00:00
add calibre-web-automated
This commit is contained in:
@@ -235,6 +235,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
- [Audiobookshelf](apps/media/audiobookshelf.md) - audiobooks
|
- [Audiobookshelf](apps/media/audiobookshelf.md) - audiobooks
|
||||||
- [Bazarr](apps/media/bazarr.md) - subtitles
|
- [Bazarr](apps/media/bazarr.md) - subtitles
|
||||||
- [Calibre](apps/media/calibre.md) - e-books
|
- [Calibre](apps/media/calibre.md) - e-books
|
||||||
|
- [Calibre-Web Automated](apps/media/calibre-web-automated.md) - e-books
|
||||||
- [Deemix](apps/media/deemix.md) - music
|
- [Deemix](apps/media/deemix.md) - music
|
||||||
- [Issued](https://useissued.com/) 🔗 - comic reader & manager
|
- [Issued](https://useissued.com/) 🔗 - comic reader & manager
|
||||||
- [Jackett](apps/media/jackett.md) - search engine proxy/adapter
|
- [Jackett](apps/media/jackett.md) - search engine proxy/adapter
|
||||||
|
|||||||
37
apps/media/calibre-web-automated.md
Normal file
37
apps/media/calibre-web-automated.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
# Calibre-Web Automated
|
||||||
|
|
||||||
|
- all-in-one eBook manager (includes calibre server and an improved calibre-web fork)
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
- [Github repo](https://github.com/crocodilestick/calibre-web-automated)
|
||||||
|
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
```yml
|
||||||
|
services:
|
||||||
|
calibre-web-automated:
|
||||||
|
image: crocodilestick/calibre-web-automated:latest
|
||||||
|
container_name: calibre-web-automated
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Dublin
|
||||||
|
# Hardcover API Key required for Hardcover as a Metadata Provider,
|
||||||
|
# get one here: https://docs.hardcover.app/api/getting-started/
|
||||||
|
- HARDCOVER_TOKEN=your_hardcover_api_key_here
|
||||||
|
- NETWORK_SHARE_MODE=true
|
||||||
|
- DISABLE_LIBRARY_AUTOMOUNT=false
|
||||||
|
ports:
|
||||||
|
- 8083:8083
|
||||||
|
volumes:
|
||||||
|
- ./config:/config
|
||||||
|
- ./library:/calibre-library
|
||||||
|
```
|
||||||
|
|
||||||
|
### Tips & Tricks
|
||||||
|
|
||||||
|
- Default Admin Login:
|
||||||
|
- Username: admin
|
||||||
|
- Password: admin123
|
||||||
Reference in New Issue
Block a user