Join Our Discord Community!

Click the button below to join our new Discord community.

Join Discord
BookStack

BookStack

Simple and easy-to-use wiki platform to organize and store information. Ideal for technical documentation, procedure manuals, and knowledge bases.

Version latest Documentation 5 minutos 1-Click Install
Deploy Now

Getting started

  1. Go to https://my.cubepath.com/deploy
  2. Select a VPS plan (recommended: gp.micro or higher)
  3. Under Operating System, choose "BookStack"
  4. Click Deploy

Your BookStack instance will be ready in approximately 5 minutes.

Deploy via API

Using CubeCLI

cubecli vps deploy \
  --plan gp.micro \
  --os bookstack \
  --hostname bookstack-wiki

Direct API

curl -X POST https://api.cubepath.com/vps/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "plan": "gp.micro",
    "os": "bookstack",
    "hostname": "bookstack-wiki"
  }'

Technical information

Access credentials:
- URL: http://YOUR-IP
- User: [email protected]
- Password: password (change it at: Avatar > My Account > Change Password)

Installed software:
- BookStack (Latest)
- MySQL 8.0
- Docker Engine

Ports:
- 80 (HTTP)

Data location:
- /opt/bookstack/uploads - Uploaded files
- /opt/bookstack/storage - Application storage
- /opt/bookstack/mysql - Database

Installation time: 5 minutes

Useful commands

# View BookStack logs
docker logs bookstack

# Restart BookStack
docker restart bookstack

# Restart database
docker restart bookstack-db

# Update BookStack
docker pull lscr.io/linuxserver/bookstack:latest
docker stop bookstack
docker rm bookstack

# Backup data
tar -czf bookstack-backup.tar.gz /opt/bookstack/

# View container status
docker ps -a