From 57e5f52b9e35d0f55876971c170ca828b0c0638f Mon Sep 17 00:00:00 2001 From: Andrew Amason Date: Mon, 30 Dec 2024 16:57:00 -0500 Subject: [PATCH] specify src & cache directories --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 842ada5..1304aae 100644 --- a/compose.yaml +++ b/compose.yaml @@ -2,7 +2,7 @@ name: andrewamason.tech services: website: image: cgr.dev/chainguard/hugo:latest - command: serve --bind 0.0.0.0 --port 8080 -c /src/config.toml + command: serve --bind 0.0.0.0 --port 8080 --contentDir /src --cacheDir /tmp/hugo_cache volumes: - nfs_hugo_src:/src - nfs_hugo_cache:/tmp/hugo_cache