I’m looking for a wiki solution (either remotely hosted or self-hosted is fine) that takes Markdown input.

Thanks.

  • Smash
    link
    fedilink
    arrow-up
    5
    ·
    1 year ago

    wikijs comes to mind, it’s deploy-able with a single docker command:

    docker run -d \
    --name=wikijs \
    --restart=unless-stopped \
    --publish 8080:3000 \
    --env "DB_TYPE=sqlite" \
    --env "DB_FILEPATH=/wiki/db.sqlite" \
    --volume wikijs:/wiki \
    --volume wikijs:/wiki/data/content \
    ghcr.io/requarks/wiki:2
    
    • festus@lemmy.ca
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      1 year ago

      I also self-host WikiJS and am quite happy with it. FYI though if you’re setting it up I’d instead configure it to use Postgres as the database, as I recall reading that they’re planning on removing SQLite support at some point. Unfortunately though that does mean you lose a one-liner like this.

      • Smash
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Okay, thanks for the heads up! I don’t actively use wikijs yet, I’ll setup a stack using postgres when I do