Files
wiki/content/projects/wikijs/index.md

1.2 KiB

title, description, date, lastmod, author, showHero
title description date lastmod author showHero
wikijs Quick overview of wikijs and setup 2025-02-04 2025-02-04 wompmacho false

What is wikijs?

Wiki.js is a powerful, modern, and open-source wiki application built on Node.js. It is designed to be the central knowledge base for your home lab or professional projects, replacing traditional, clunky wiki platforms with a sleek, intuitive interface.

I like it because of the useful Markdown editor that lets you nicely organize links, code etc. I can also backup the database to my NAS in nice MD files, so nothing gets lost if something is corrupted.

Docker Compose Example

# wikijs - docker compose
# https://github.com/linuxserver/docker-wikijs
---
version: "3.8"
services:
  wikijs:
    image: lscr.io/linuxserver/wikijs:latest
    container_name: wikijs
    environment:
      - PUID=0
      - PGID=0
      - TZ=Etc/UTC
      - DB_TYPE=sqlite #optional
      - DB_HOST= #optional
      - DB_PORT= #optional
      - DB_NAME= #optional
      - DB_USER= #optional
      - DB_PASS= #optional
    volumes:
      - /app/wiki/config:/config
      - /app/wiki/data:/data
    ports:
      - 3000:3000
    restart: unless-stopped