Dockerfiles/hexo/bootstrap.sh

11 lines
175 B
Bash
Raw Normal View History

2016-11-11 10:33:18 +00:00
#! /bin/bash
if [ "$1" == "server" ]; then
# start hexo server
2016-11-30 12:47:38 +00:00
echo "starting hexo..."
2016-11-11 10:33:18 +00:00
hexo server
else
# do nothing, just wait
while true; do sleep 1000; done
fi