Sign inSign up

wmudge/tiddlywiki

By wmudge

Updated over 4 years ago

Run TiddlyWiki via Docker.

Image
0

2.1K

wmudge/tiddlywiki repository overview

TiddlyWiki via Docker

Run TiddlyWiki via a node:alpine Docker container.

See wmudge/tiddlywiki.

Prerequisites

Install Docker.

Quickstart

sudo docker run --name wiki -d -p 8080:8080 wmudge/tiddlywiki

Now TiddlyWiki should be running on http://localhost:8080.

Data Directory on Host

The container uses a Docker volume to save the wiki data, and you can use a local folder for the volume and persist your wiki instance.

sudo docker run --name wiki -d -p 8080:8080 -v $(pwd)/.tiddlywiki:/var/lib/tiddlywiki wmudge/tiddlywiki

In this example, the folder $(pwd)/.tiddlywiki is used for the data.

Authentication

You can provide the USERNAME and PASSWORD environment variables to add Basic Auth to the wiki. If absent, the PASSWORD defaults to wiki.

Other Settings

If you are in a memory-constrained environment, you can provide the NODE_MEM environment variable to specify the memory ceiling (in MB).

To debug a Tiddlywiki, set the DEBUG environment variable to full.

Tag summary

Content type

Image

Digest

Size

72.1 MB

Last updated

over 4 years ago

docker pull wmudge/tiddlywiki