Make documentation a joy to write with a highly performant, open-source platform designed for modern teams. Running on a fast Node.js engine, this solution intelligently scales from small devices to high-performance cloud environments. You can fully customize the appearance, choose between light and dark modes, and protect your content with granular access controls.
Enjoy a wide range of on-demand modules tailored to your specific needs:
services:
db:
image: postgres:15-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: ${DB_PASS}
POSTGRES_USER: wikijs
logging:
driver: "none"
restart: unless-stopped
volumes:
- ./db-data:/var/lib/postgresql/data
wiki:
image: requarks/wiki:2
depends_on:
- db
environment:
DB_TYPE: postgres
DB_HOST: db
DB_PORT: 5432
DB_USER: wikijs
DB_PASS: ${DB_PASS}
DB_NAME: wiki
restart: unless-stopped
ports:
- "3000:3000"DB_PASS=wikijsrocksAuto-fetched about 1 hour ago
Auto-fetched about 1 hour ago