NodeJS based TiddlyWiki 5 Docker image.
Find a file
Martin Honermeyer c4d1ae8343 Remove apt clean instructions
This is done automatically in the current Ubuntu images
2015-01-13 00:25:47 +01:00
Dockerfile Remove apt clean instructions 2015-01-13 00:25:47 +01:00
init-and-run-wiki Do not try to initialize wiki if it exists already 2014-11-15 18:44:05 +01:00
README.md Initial version 2014-05-19 00:29:20 +02:00

Run TiddlyWiki 5 via docker.

Prerequisites

Install docker.

Quickstart

sudo docker run -d -p 8080:8080 mazzolino/tiddlywiki

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

Keeping the data

The container uses a Docker volume to save the wiki data. In order not to lose sight of that, I recommend using a local folder for the volume.

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

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