This commit is contained in:
2019-11-23 20:28:15 +08:00
parent b677d7f0da
commit e9b0ca3b9b
3 changed files with 66 additions and 0 deletions

19
hugo/README.md Normal file
View File

@@ -0,0 +1,19 @@
# Dockered Hugo
## What is `Hugo`
> Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, ease of use, and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website.
Documents: [Hugo](https://gohugo.io/)
```
docker run \
--name hugo \
-d \
--restart always \
--hostname hugo \
-p 1313:1313 \
--mount type=bind,source=/path/to/blog,target=/blog \
newnius/hugo
```