Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnibu/tiddlyweb-docker
Docker container running tiddlyweb server for tiddlywiki
https://github.com/gnibu/tiddlyweb-docker
Last synced: 5 days ago
JSON representation
Docker container running tiddlyweb server for tiddlywiki
- Host: GitHub
- URL: https://github.com/gnibu/tiddlyweb-docker
- Owner: gnibu
- License: gpl-2.0
- Created: 2015-03-29T17:16:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-29T15:36:53.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T12:51:19.369Z (3 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - gnibu/tiddlyweb-docker - Docker container running tiddlyweb server for tiddlywiki (others)
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