Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gnibu/tiddlyweb-docker

Docker container running tiddlyweb server for tiddlywiki
https://github.com/gnibu/tiddlyweb-docker

Last synced: about 2 months ago
JSON representation

Docker container running tiddlyweb server for tiddlywiki

Awesome Lists containing this project

README

        

# tiddlyweb-docker

Docker container running tiddlyweb server for tiddlywiki

To test

docker run -it --rm -p 80:80 gnibu/tiddlyweb:dev

Then use your browser at the address localhost

You can use an host folder (ie: /data/wiki) to be mounted in the container. This will ensure persistance of your data

docker run -d -e INSTANCE=work -v /data/wiki:/wiki -p 80:80 gnibu/tiddlyweb:dev

You can specify parameter such as the instance name to run (if it doen't exist, it will be created)

docker run -d -e INSTANCE=work -v /data/wiki:/wiki -p 80:80 gnibu/tiddlyweb:dev

Default parameters you can overide

ENV INSTANCE=default
ENV SERVER_NAME=0.0.0.0
ENV SERVER_PORT=80