The image provides tiddlywiki and related services.
- Tiddlywiki - The most awesome way to keep notes.
- TW5-Bob - Provides real-time and multi-user using web sockets.
- Nginx - Reverse proxy for:
docker run -p 80:80 cornernote/tiddlywikiNow access your tiddlywiki from http://localhost/.
Docker compose allows you to keep all the configuration for the docker image in a single file, then run using docker compose up. For most of the guides in documentation the docker compose method will be used, however you can always apply the same options just using docker commands.
mkdir tiddlywiki && cat > docker-compose.yml (paste from below, then CTRL+D)
version: '3'
services:
tiddlywiki:
image: cornernote/tiddlywiki:5.2.3-bob-1.7.3b1
volumes:
- ./tiddlywiki:/app
ports:
- "80:80"Then start the container
docker compose up -dFor more examples see Documentation > Examples.
The image provides several services to run a multi-user tiddlywiki server.
- Tiddlywiki NodeJS - providing the core of the system
- TW5-Bob - a plugin that makes tiddlywiki a multi-user wiki on node
- Nginx - high-performance HTTP server and reverse proxy
- Supervisor - allows multiple processes to run within a single container
latest5.2.3-bob-1.7.3b1