Wiki.js - Modern and powerful wiki software
Everything you need to deploy Wikijs 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 Wikijs up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Wikijs with:
blastdock init wikijs
Interactive mode:
blastdock init wikijs -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 Wikijs installation with these configuration options.
Web interface port
Database password
Complete Docker Compose configuration for Wikijs deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_DB=wiki
1: POSTGRES_USER=wikijs
2: POSTGRES_PASSWORD={{ db_password }}
volumes:
- /var/lib/postgresql/data
networks:
- wikijs_network
wikijs:
image: requarks/wiki:latest
container_name: {{ project_name }}_wikijs
restart: unless-stopped
depends_on:
- postgres
ports:
- "3000"
environment:
0: DB_TYPE=postgres
1: DB_HOST=postgres
2: DB_PORT=5432
3: DB_USER=wikijs
4: DB_PASS={{ db_password }}
5: DB_NAME=wiki
networks:
- wikijs_network
volumes:
postgres_data:
driver: local
networks:
wikijs_network:
driver: bridge