mdwiki/docker-entrypoint.sh
Knut Ahlers ec09c0fc5a
Fix data path
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-03-11 21:16:11 +01:00

10 lines
157 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
if [ "${1:-}" = 'serve' ]; then
cp /usr/src/mdwiki/mdwiki.html /data/index.html
exec python -m http.server 80
fi
exec "$@"