Merge pull request #28 from SelfhostedPro/Bookstack

added bookstack
This commit is contained in:
SelfhostedPro 2020-06-05 08:37:21 -07:00 committed by GitHub
commit 161042da0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 71 additions and 0 deletions

BIN
Images/bookstack2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1,34 @@
---
version: "2"
services:
bookstack:
image: linuxserver/bookstack
container_name: bookstack
environment:
- PUID=${PUID}
- PGID=${PGID}
- DB_HOST=bookstack_db
- DB_USER=bookstack
- DB_PASS=${Database_Password}
- DB_DATABASE=bookstackapp
volumes:
- /portainer/Files/AppData/Bookstack/Data:/config
ports:
- 6875:80
restart: unless-stopped
depends_on:
- bookstack_db
bookstack_db:
image: linuxserver/mariadb
container_name: bookstack_db
environment:
- PUID=${PUID}
- PGID=${PGID}
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- TZ=${Timezone}
- MYSQL_DATABASE=bookstackapp
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=${Database_Password}
volumes:
- /portainer/Files/AppData/Bookstack/DB:/config
restart: unless-stopped

View File

@ -3291,5 +3291,42 @@
"preset": true "preset": true
} }
] ]
},
{
"type": 2,
"title": "bookstack",
"name": "bookstack",
"description": "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.",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
"categories": [
"Wiki"
],
"platform": "linux",
"repository": {
"url": "https://github.com/SelfhostedPro/selfhosted_templates",
"stackfile": "Template/Stack/bookstack.yml"
},
"env": [
{
"name": "PUID",
"label": "PUID",
"default": "1000",
"preset": true
},
{
"name": "PGID",
"label": "PGID",
"default": "100",
"preset": true
},
{
"name": "Database_Password",
"label": "Database Password"
},
{
"name": "MYSQL_ROOT_PASSWORD",
"label": "MYSQL_ROOT_PASSWORD"
}
]
} }
] ]