Bookstack
A free, self-hosted wiki for easy information organization and storage.
#wiki #Live Demo #Screenshots
Getting Started
- Create a folder and move to the folder
mkdir bookstack && cd bookstack
- Create a
docker-compose.yml
file and add the following content:services: bookstack: image: lscr.io/linuxserver/bookstack:24.12.1 container_name: bookstack environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - APP_URL=http://localhost:6875 - APP_KEY=base64:3qjlIoUX4Tw6fUQgZcxMbz6lb8+dAzqpvItqHvahW1c= - DB_HOST=mariadb - DB_PORT=3306 - DB_DATABASE=bookstack - DB_USERNAME=bookstack - DB_PASSWORD=bookstack8432 volumes: - bookstack_app_data:/config ports: - 6875:80 restart: unless-stopped mariadb: image: lscr.io/linuxserver/mariadb:11.4.4 container_name: mariadb environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - MYSQL_ROOT_PASSWORD=mysupersecretrootpassword - MYSQL_DATABASE=bookstack - MYSQL_USER=bookstack - MYSQL_PASSWORD=bookstack8432 volumes: - bookstack_db_data:/config restart: unless-stopped volumes: bookstack_app_data: bookstack_db_data:
- Run the following command to start the container:
docker compose up -d
- Open the browser and go to http://localhost:6875 to access the Bookstack.
Email: [email protected] Password: password