linuxserver/docker-bookstack

Expanded the bookstack / no editing tools

NightFlexer opened this issue · 2 comments

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

Image
I see very limited tools when creating a page.
Where is the formatting? Where is the insertion of images?
How do I get this?

Expected Behavior

Image

Steps To Reproduce

version: '3.9'

services:
mariadb:
image: mariadb:latest
container_name: mariadb_bookstack
restart: always
environment:
MYSQL_ROOT_PASSWORD: root_password
MYSQL_DATABASE: bookstack
MYSQL_USER: bookstack_user
MYSQL_PASSWORD: bookstack_password
volumes:
- /opt/BookStack/database_here:/var/lib/mysql

bookstack:
image: lscr.io/linuxserver/bookstack:latest
container_name: bookstack
env_file:
- .env #base64:0F+fyHNORnD0jZdeLTyiGUZksKL9KOdQds=
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Moscow
- APP_URL=http://localhost:6875
- APP_KEY=base64:0F+fyHNORnD0jZdeLTyiGUZksKL9KOdQd
s=
- DB_HOST=mariadb_bookstack
- DB_PORT=3306
- DB_USERNAME=bookstack_user
- DB_PASSWORD=bookstack_password
- DB_DATABASE=bookstack
volumes:
- /opt/BookStack/config:/config
ports:
- 6875:80
restart: unless-stopped

docker-compose up -d

Environment

- OS: docker-compose
- How docker service was installed: native

CPU architecture

x86-64

Docker creation

image: lscr.io/linuxserver/bookstack:latest

Container logs

[custom-init] No custom files found, skipping...
[ls.io-init] done.

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

Hi @NightFlexer,
This isn't really an issue for the linuxserver team, as it's not a functional issue with their container setup.

How do I get this?

You need to create a page within your Book. That's where actual documentation content is created/stored.
Your screenshot just shows the edit view for a book, which only allows for a simple description.