mirror of
https://github.com/m0wer/tiddlywiki-docker.git
synced 2026-07-18 00:45:15 +00:00
8 lines
206 B
Bash
Executable file
8 lines
206 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 $PASSWORD 0.0.0.0
|