Create a wiki #6

Open
opened 2024-10-10 20:29:46 +00:00 by Erik · 3 comments
Owner

With public and private parts which could be published

Create a blog article for this

With public and private parts which could be published Create a blog article for this
Author
Owner

Setup wiki.js:

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:
      - "38401:3000"

volumes:
  db-data:
Setup wiki.js: ```yaml 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: - "38401:3000" volumes: db-data: ```
Author
Owner

Will probably do that in this git repo instead, as it would be statically typed and easily able to reference commits, issues, pull-requests, etc

Will probably do that in this git repo instead, as it would be statically typed and easily able to reference commits, issues, pull-requests, etc
Author
Owner

started creating one in here

started creating one in [here](src/branch/master/docs/INDEX.md)
Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Erik/server#6
No description provided.