Created
October 29, 2020 16:12
-
-
Save dnburgess/bb99166d64e81e46494b6b9015676eed to your computer and use it in GitHub Desktop.
DB Tech BookStack on Pi 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
bookstack: | |
image: linuxserver/bookstack | |
container_name: bookstack | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- DB_HOST=bookstack_db | |
- DB_USER=bookstack | |
- DB_PASS=bookstack | |
- DB_DATABASE=bookstackapp | |
volumes: | |
- /srv/dev-disk-by-label-Files/Config/BookStack:/config | |
ports: | |
- 6875:80 | |
restart: unless-stopped | |
depends_on: | |
- bookstack_db | |
bookstack_db: | |
image: yobasystems/alpine-mariadb:latest | |
container_name: bookstack_db | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- MYSQL_ROOT_PASSWORD=bookstack | |
- TZ=America/Denver | |
- MYSQL_DATABASE=bookstackapp | |
- MYSQL_USER=bookstack | |
- MYSQL_PASSWORD=bookstack | |
volumes: | |
- /srv/dev-disk-by-label-Files/Databases/BookStack:/config | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment