Documentation Server
External URL: wiki.risingflow.com
Internal URL: http://192.168.1.240:5000
GitHub URL: https://github.com/linuxserver/docker-wikijs
Note: wikijs is configured to sync with my private github repository: https://github.com/ali3nz/wiki
Bi-Directional Sync is enabled
services:
wikijs:
image: lscr.io/linuxserver/wikijs:latest
container_name: wikijs
depends_on:
- db
environment:
- PUID=1000
- PGID=1000
- TZ=Pacific/Auckland
- DB_TYPE=postgres
- DB_HOST=db
- DB_PORT=redacted
- DB_NAME=redacted
- DB_USER=redacted
- DB_PASS=redacted
volumes:
- ./wikijs/config:/config
- ./wikijs/data:/data
ports:
- 5000:3000
restart: always
db:
image: postgres:latest
container_name: wikijs-db
environment:
- POSTGRES_DB=redacted
- POSTGRES_USER=redacted
- POSTGRES_PASSWORD=redacted
volumes:
- ./wikijs/db:/var/lib/postgresql/data
restart: always```