From 8513fbc852ca007c12b1c2db4bdca1c3f93389e2 Mon Sep 17 00:00:00 2001 From: Andrew Amason Date: Mon, 30 Dec 2024 16:15:47 -0500 Subject: [PATCH] add entrypoint to compose.yaml --- compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 3de00fe..01b6716 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,14 +3,14 @@ name: andrewamason.tech services: server: image: klakegg/hugo:latest + entrypoint: /bin/bash command: > 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" - + hugo serve --bind 0.0.0.0 --port 8080 #command: server -D volumes: - nfs_hugo_src:/src