Calibre-Web - Web app for browsing, reading and downloading eBooks
Everything you need to deploy Calibre-web with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Calibre-web up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Calibre-web with:
blastdock init calibre-web
Interactive mode:
blastdock init calibre-web -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Calibre-web installation with these configuration options.
Web interface port
Admin username
Admin password
Complete Docker Compose configuration for Calibre-web deployment.
version: '3.8'
services:
calibre-web:
image: linuxserver/calibre-web:latest
container_name: {{ project_name }}_calibre_web
restart: unless-stopped
ports:
- "8083"
environment:
0: PUID=1000
1: PGID=1000
2: TZ=Europe/London
- DOCKER_MODS=linuxserver/mods: universal-calibre
3: OAUTHLIB_RELAX_TOKEN_SCOPE=1
volumes:
- /config
- /books
networks:
- calibre_network
volumes:
calibre_config:
driver: local
calibre_books:
driver: local
networks:
calibre_network:
driver: bridge