Wiki.js

Wiki.js - Modern and powerful wiki software

3000
Default Port
2
Services
12.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init wikijs

Template Overview

Everything you need to deploy Wikijs with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Wikijs
requarks/wiki:latest
Postgres
postgres:13
Categories
Database, Documentation
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Wikijs up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Wikijs with:

Terminal
blastdock init wikijs

Interactive mode:

Terminal
blastdock init wikijs -i

What's Included

Wikijs
Container service
Postgres
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Wikijs installation with these configuration options.

2
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Port

Web interface port

port
Default: 3000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Wikijs deployment.

2
Services
1
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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