BookStack - Knowledge base and documentation platform
Everything you need to deploy Bookstack 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 Bookstack up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Bookstack with:
blastdock init bookstack
Interactive mode:
blastdock init bookstack -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 Bookstack installation with these configuration options.
Web interface port
MySQL password
Application key
Complete Docker Compose configuration for Bookstack deployment.
version: '3.8'
services:
mysql:
image: mysql:8
container_name: {{ project_name }}_mysql
restart: unless-stopped
environment:
0: MYSQL_ROOT_PASSWORD={{ mysql_password }}
1: MYSQL_DATABASE=bookstack
2: MYSQL_USER=bookstack
3: MYSQL_PASSWORD={{ mysql_password }}
volumes:
- /var/lib/mysql
networks:
- bookstack_network
bookstack:
image: linuxserver/bookstack:latest
container_name: {{ project_name }}_bookstack
restart: unless-stopped
depends_on:
- mysql
ports:
- "80"
environment:
0: PUID=1000
1: PGID=1000
2: DB_HOST=mysql
3: DB_PORT=3306
4: DB_USER=bookstack
5: DB_PASS={{ mysql_password }}
6: DB_DATABASE=bookstack
- APP_URL=http: //localhost:{{ port }}
7: APP_KEY={{ app_key }}
volumes:
- /config
networks:
- bookstack_network
volumes:
mysql_data:
driver: local
bookstack_config:
driver: local
networks:
bookstack_network:
driver: bridge