mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
# Bookstack is a free and open source Wiki designed for creating beautiful
|
|
# documentation. Feautring 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: ghcr.io/linuxserver/bookstack
|
|
container_name: bookstack
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- APP_URL=
|
|
- DB_HOST=bookstack_db
|
|
- DB_USER=bookstack
|
|
- DB_PASS=<yourdbpass>
|
|
- DB_DATABASE=bookstackapp
|
|
volumes:
|
|
- /path/to/data:/config
|
|
ports:
|
|
- 6875:80
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- bookstack_db
|
|
bookstack_db:
|
|
image: ghcr.io/linuxserver/mariadb
|
|
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:
|
|
- /path/to/data:/config
|
|
restart: unless-stopped
|
|
|