Skip to content

cornernote/docker-tiddlywiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Image for Tiddlywiki

The image provides tiddlywiki and related services.

Pulls

Features

Installation

Quick Start

docker run -p 80:80 cornernote/tiddlywiki

Now access your tiddlywiki from http://localhost/.

Using Docker Compose

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 -d

For more examples see Documentation > Examples.

Services Provided

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

Supported Tags

  • latest
  • 5.2.3-bob-1.7.3b1

Resources

About

Docker build for tiddlywiki with bob-multiuser plugin and nginx proxy.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published