mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-16 02:46:45 +00:00
10 lines
149 B
Bash
10 lines
149 B
Bash
|
|
#! /bin/bash
|
||
|
|
|
||
|
|
if [ "$1" == "server" ]; then
|
||
|
|
# start hexo server
|
||
|
|
hexo server
|
||
|
|
else
|
||
|
|
# do nothing, just wait
|
||
|
|
while true; do sleep 1000; done
|
||
|
|
fi
|