mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-08 00:51:55 +00:00
22 lines
466 B
Markdown
22 lines
466 B
Markdown
https://hexo.io/zh-cn/
|
|
|
|
http://theme-next.iissnan.com/
|
|
|
|
First Time(not inited):
|
|
docker service create \
|
|
--name hexo \
|
|
--publish 80:4000 \
|
|
-e GIT_EMAIL="me@newnius.com" \
|
|
-e GIT_NAME="newnius" \
|
|
--mount type=bind,source=/mnt/data/blog,target=/blog \
|
|
newnius/hexo
|
|
|
|
Start Server:
|
|
docker service create \
|
|
--name hexo \
|
|
--publish 80:4000 \
|
|
-e GIT_EMAIL="me@newnius.com" \
|
|
-e GIT_NAME="newnius" \
|
|
--mount type=bind,source=/mnt/data/blog,target=/blog \
|
|
newnius/hexo server
|