This is a python server for serving and saving tiddlywiki html files. It will host files from its current directory. It will also save files there as well.
relaxed flag.
The image will run tiddlysaver from /tiddlywiki.
docker run -ti --rm \
-e GUNICORN_CMD_ARGS="--bind=0.0.0.0:8000 --access-logfile=-" \
-p 8000:8000 \
-v $PWD/tiddlywiki:/tiddlywiki \
itsamenathan/tiddlysaver-python:latest
pip install .
gunicorn -b 0.0.0.0:8000 "tiddlysaver:create_app()"
pip install -e .
export FLASK_APP=tiddlysaver
export FLASK_ENV=development
flask run --host 0.0.0.0 --port 8000
docker run -e RUN_LOCAL=true -v ${PWD}:/tmp/lint github/super-linter
Content type
Image
Digest
Size
26.1 MB
Last updated
almost 6 years ago
docker pull itsamenathan/tiddlysaver-python