MirrorNest
← Alle Anleitungen

Wiki.js

A modern, extensible wiki engine with a Markdown/visual editor, fine-grained permissions, and built-in support for multiple authentication and storage backends.

Zielsystem: Any Docker hostProductivityDocumentsOffizielle Website ↗Offizielle Dokumentation ↗
Diese Anleitung basiert auf der offiziellen Dokumentation von Wiki.js, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
  1. 1Create a docker-compose.yml

    services: db: image: postgres:15-alpine environment: POSTGRES_DB: wiki POSTGRES_PASSWORD: wikijsrocks POSTGRES_USER: wikijs logging: driver: none restart: unless-stopped volumes: - db-data:/var/lib/postgresql/data wiki: image: ghcr.io/requarks/wiki:2 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: - "80:3000" volumes: db-data:

    Change POSTGRES_PASSWORD/DB_PASS from the example before using this in production.

  2. 2Start Wiki.js

    docker compose up -d
  3. 3Complete the setup wizard

    Open the site and follow the wizard to create the initial administrator account.

    open http://localhost