Wiki.js
The most powerful and extensible open source Wiki software.
#wiki
Getting Started
- Create a folder and move to the folder
mkdir wikijs && cd wikijs
- Create a
docker-compose.yml
file and add the following content:docker-compose.ymlservices: 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: - "8085:3000" volumes: db-data:
- Start the service using docker compose
docker compose up -d
- Go to http://localhost:8085 to access Wiki.js