mirror of
https://github.com/m0wer/tiddlywiki-docker.git
synced 2026-07-18 00:45:15 +00:00
9 lines
225 B
Bash
Executable file
9 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -d /var/lib/tiddlywiki/mywiki ]; then
|
|
tiddlywiki mywiki --init server
|
|
fi
|
|
|
|
exec tiddlywiki mywiki --server 8080 $:/core/save/all text/plain text/html ${USERNAME:-user} ${PASSWORD:-'wiki'} 0.0.0.0
|
|
|