mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-19 18:48:21 +00:00
wiki
This commit is contained in:
55
apps/wiki/bookstack.md
Normal file
55
apps/wiki/bookstack.md
Normal file
@@ -0,0 +1,55 @@
|
||||
# Bookstack
|
||||
|
||||
- Has some structure: Shelf > Book > Chapter > Page
|
||||
- Looks modern, but the UX is not great and not very configurable
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://www.bookstackapp.com/)
|
||||
- [Github repo](https://github.com/BookStackApp/BookStack)
|
||||
- [DockerHub repo](https://hub.docker.com/r/linuxserver/bookstack)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2"
|
||||
services:
|
||||
bookstack:
|
||||
image: linuxserver/bookstack
|
||||
container_name: bookstack
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- DB_HOST=db
|
||||
- DB_USER=bookstack
|
||||
- DB_PASS=bookstack
|
||||
- DB_DATABASE=bookstack
|
||||
volumes:
|
||||
- ./data:/config
|
||||
ports:
|
||||
- 6875:80
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- db
|
||||
db:
|
||||
image: linuxserver/mariadb
|
||||
container_name: bookstack-db
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- MYSQL_ROOT_PASSWORD=bookstack
|
||||
- TZ=Europe/Dublin
|
||||
- MYSQL_DATABASE=bookstackapp
|
||||
- MYSQL_USER=bookstack
|
||||
- MYSQL_PASSWORD=bookstack
|
||||
volumes:
|
||||
- ./data:/config
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
|
||||
## Tips & Tricks
|
||||
- The app takes a while to start up first time, so be patient!
|
||||
- Login with: `admin@admin.com`:`password`
|
||||
52
apps/wiki/confluence.md
Normal file
52
apps/wiki/confluence.md
Normal file
@@ -0,0 +1,52 @@
|
||||
# Confluence
|
||||
|
||||
- Not free. Used to be $10 for up to 10 users. From Feb 2021 the Server edition will stop selling new licenses.
|
||||
- Most feature rich and easy to use by less tech-savvy people.
|
||||
- Stable core and well tested (that is not to say it has no bugs :smile: e.g. code macro strips leading spaces on paste).
|
||||
- Slow.
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://hub.docker.com/r/atlassian/confluence-server)
|
||||
- [DockerHub repo](https://hub.docker.com/r/atlassian/confluence-server)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2"
|
||||
services:
|
||||
confluence:
|
||||
image: atlassian/confluence-server
|
||||
container_name: confluence
|
||||
environment:
|
||||
- TZ=Europe/Dublin
|
||||
- JVM_MINIMUM_MEMORY=2048m
|
||||
- JVM_MAXIMUM_MEMORY=8192m
|
||||
- ATL_JDBC_USER=dbuser1
|
||||
- ATL_JDBC_PASSWORD=123456
|
||||
- ATL_DB_TYPE=postgresql
|
||||
- ATL_PROXY_NAME=confluence.example.com
|
||||
- ATL_PROXY_PORT=443
|
||||
- ATL_TOMCAT_SCHEME=https
|
||||
- ATL_TOMCAT_SECURE=true
|
||||
volumes:
|
||||
- ./data:/var/atlassian/application-data/confluence
|
||||
ports:
|
||||
- 8090:8090
|
||||
- 8091:8091
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
container_name: confluence-postgres
|
||||
image: postgres:12.4
|
||||
command: postgres -c 'shared_buffers=128MB' -c 'max_connections=125'
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./database:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_USER=dbuser1
|
||||
- POSTGRES_PASSWORD=123456
|
||||
```
|
||||
49
apps/wiki/wikijs.md
Normal file
49
apps/wiki/wikijs.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# Wiki.js
|
||||
|
||||
- nice looking UI, with dark mode
|
||||
- nice search
|
||||
- configurable & lots of modules/plugins (albeit most of them are useless)
|
||||
- limited number of code highlighting (no yaml or bash...)
|
||||
- the navigation logic is extremely weird... Impossible to easily build a tree-like structure (with indefinite nesting level)
|
||||
- not nearly as feature rich as confluence
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://wiki.js.org/)
|
||||
- [Github repo](https://wiki.js.org/)
|
||||
- [Docs](https://docs.requarks.io/install/docker)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
version: "3"
|
||||
services:
|
||||
db:
|
||||
image: postgres:11-alpine
|
||||
container_name: wiki.js-db
|
||||
logging:
|
||||
driver: "none"
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_DB: wiki
|
||||
POSTGRES_PASSWORD: wikijsrocks
|
||||
POSTGRES_USER: wikijs
|
||||
volumes:
|
||||
- ./db:/var/lib/postgresql/data
|
||||
|
||||
wiki:
|
||||
image: requarks/wiki:2
|
||||
container_name: wiki.js
|
||||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
DB_TYPE: postgres
|
||||
DB_HOST: db
|
||||
DB_PORT: 5432
|
||||
DB_USER: wikijs
|
||||
DB_PASS: wikijsrocks
|
||||
DB_NAME: wiki
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3300:3000"
|
||||
```
|
||||
49
apps/wiki/xwiki.md
Normal file
49
apps/wiki/xwiki.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# XWiki
|
||||
|
||||
- Quite close to Confluence
|
||||
- UI looks a bit dated, but functional and configurable
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://www.xwiki.org)
|
||||
- [Github repo](https://github.com/xwiki)
|
||||
- [Docker installation](https://github.com/xwiki-contrib/docker-xwiki/blob/master/README.md#using-docker-compose)
|
||||
|
||||
|
||||
## Prerequisities
|
||||
First run these:
|
||||
```sh
|
||||
wget https://raw.githubusercontent.com/xwiki-contrib/docker-xwiki/master/11/mysql-tomcat/mysql/xwiki.cnf
|
||||
wget https://raw.githubusercontent.com/xwiki-contrib/docker-xwiki/master/11/mysql-tomcat/mysql/init.sql
|
||||
```
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
version: '2'
|
||||
services:
|
||||
web:
|
||||
image: "xwiki:lts-mysql-tomcat"
|
||||
container_name: xwiki-mysql-tomcat-web
|
||||
depends_on:
|
||||
- db
|
||||
ports:
|
||||
- "3123:8080"
|
||||
environment:
|
||||
- DB_USER=xwiki
|
||||
- DB_PASSWORD=xwiki
|
||||
- DB_HOST=xwiki-mysql-db
|
||||
volumes:
|
||||
- ./data:/usr/local/xwiki
|
||||
db:
|
||||
image: "mysql:5.7"
|
||||
container_name: xwiki-mysql-db
|
||||
volumes:
|
||||
- ./xwiki.cnf:/etc/mysql/conf.d/xwiki.cnf
|
||||
- ./db:/var/lib/mysql
|
||||
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=xwiki
|
||||
- MYSQL_USER=xwiki
|
||||
- MYSQL_PASSWORD=xwiki
|
||||
- MYSQL_DATABASE=xwiki
|
||||
```
|
||||
Reference in New Issue
Block a user