updates to command scripts

This commit is contained in:
Andrew Amason
2024-12-30 16:08:10 -05:00
parent 8325e13602
commit 268c88b12c

View File

@@ -3,12 +3,14 @@ name: andrewamason.tech
services:
server:
image: cgr.dev/chainguard/hugo:latest
command: hugo new site quickstart
command: cd quickstart
command: git init
command: git submodule add https://github.com/luizdepra/hugo-coder.git themes/hugo-coder
command: echo 'theme = "hugo-coder"' >> hugo.toml
command: hugo serve --bind 0.0.0.0 --port 8080
command: >
sh -c hugo new site quickstart &&
cd quickstart &&
git init &&
git submodule add https://github.com/luizdepra/hugo-coder.git themes/hugo-coder &&
echo 'theme = "hugo-coder"' >> hugo.toml &&
hugo serve --bind 0.0.0.0 --port 8080"
#command: server -D
volumes:
- nfs_hugo_src:/src