# [Bookstack](https://github.com/BookStackApp/BookStack) is a free and open # source Wiki designed for creating beautiful documentation. Featuring a simple, # but powerful WYSIWYG editor it allows for teams to create detailed and useful # documentation with ease. Powered by SQL and including a Markdown editor for # those who prefer it, BookStack is geared towards making documentation more of # a pleasure than a chore. For more information on BookStack visit their website # and check it out: https://www.bookstackapp.com --- version: "2" services: bookstack: image: lscr.io/linuxserver/bookstack container_name: bookstack environment: - PUID=1000 - PGID=1000 - APP_URL=https://bookstack.example.com - DB_HOST=bookstack_db - DB_PORT=3306 - DB_USER=bookstack - DB_PASS= - DB_DATABASE=bookstackapp volumes: - ./bookstack_app_data:/config ports: - 6875:80 restart: unless-stopped depends_on: - bookstack_db bookstack_db: image: lscr.io/linuxserver/mariadb container_name: bookstack_db environment: - PUID=1000 - PGID=1000 - MYSQL_ROOT_PASSWORD= - TZ=Europe/London - MYSQL_DATABASE=bookstackapp - MYSQL_USER=bookstack - MYSQL_PASSWORD= volumes: - ./bookstack_db_data:/config restart: unless-stopped