mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-08 00:51:55 +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
|