docker-bits/lsio/bookstack/docker-compose.yaml

46 lines
1.4 KiB
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Bookstack](https://github.com/BookStackApp/BookStack) is a free and open
2021-07-31 00:47:03 +00:00
# source Wiki designed for creating beautiful documentation. Featuring a simple,
2021-04-21 00:55:42 +00:00
# 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
2021-04-10 10:16:29 +00:00
---
version: "2"
services:
bookstack:
2021-10-18 00:52:57 +00:00
image: lscr.io/linuxserver/bookstack
2021-04-10 10:16:29 +00:00
container_name: bookstack
environment:
- PUID=1000
- PGID=1000
2023-05-24 00:55:18 +00:00
- APP_URL=https://bookstack.example.com
2021-04-10 10:16:29 +00:00
- DB_HOST=bookstack_db
2022-12-23 00:53:26 +00:00
- DB_PORT=3306
2021-04-10 10:16:29 +00:00
- DB_USER=bookstack
- DB_PASS=<yourdbpass>
- DB_DATABASE=bookstackapp
volumes:
2023-05-24 00:55:18 +00:00
- ./bookstack_app_data:/config
2021-04-10 10:16:29 +00:00
ports:
- 6875:80
restart: unless-stopped
depends_on:
- bookstack_db
bookstack_db:
2021-10-18 00:52:57 +00:00
image: lscr.io/linuxserver/mariadb
2021-04-10 10:16:29 +00:00
container_name: bookstack_db
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=<yourdbpass>
- TZ=Europe/London
- MYSQL_DATABASE=bookstackapp
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=<yourdbpass>
volumes:
2023-05-24 00:55:18 +00:00
- ./bookstack_db_data:/config
2021-04-10 10:16:29 +00:00
restart: unless-stopped