Run TiddlyWiki via a node:alpine Docker container.
See wmudge/tiddlywiki.
Install Docker.
sudo docker run --name wiki -d -p 8080:8080 wmudge/tiddlywiki
Now TiddlyWiki should be running on http://localhost:8080.
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.
You can provide the USERNAME and PASSWORD environment variables to add Basic Auth to the wiki. If absent, the PASSWORD defaults to wiki.
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.
Content type
Image
Digest
Size
72.1 MB
Last updated
over 4 years ago
docker pull wmudge/tiddlywiki