From 8325e1360277c301d65c7d43ddd0ac623464f41c Mon Sep 17 00:00:00 2001 From: Andrew Amason Date: Mon, 30 Dec 2024 16:03:17 -0500 Subject: [PATCH] trying something different --- compose.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index c23397b..37e2afb 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,7 +3,13 @@ name: andrewamason.tech services: server: image: cgr.dev/chainguard/hugo:latest - command: server -D + 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: server -D volumes: - nfs_hugo_src:/src - nfs_hugo_cache:/tmp/hugo_cache