mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 16:11:55 +00:00
9 lines
124 B
Bash
9 lines
124 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# init hugo if dir is empty
|
||
|
if ! [ "$(ls -A /blog )" ]; then
|
||
|
hugo new site /blog
|
||
|
fi
|
||
|
|
||
|
hugo server --bind 0.0.0.0
|