Komga - Media server for comics/mangas/BDs
Everything you need to deploy Komga 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 Komga up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Komga with:
blastdock init komga
Interactive mode:
blastdock init komga -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 Komga installation with these configuration options.
Web interface port
Admin email
Admin password
Complete Docker Compose configuration for Komga deployment.
version: '3.8'
services:
komga:
image: gotson/komga:latest
container_name: {{ project_name }}_komga
restart: unless-stopped
ports:
- "8080"
environment:
0: KOMGA_USER_EMAIL={{ admin_email }}
1: KOMGA_USER_PASSWORD={{ admin_password }}
2: KOMGA_USER_ROLES=ADMIN
volumes:
- /config
- /books
networks:
- komga_network
volumes:
komga_config:
driver: local
komga_books:
driver: local
networks:
komga_network:
driver: bridge