From 015a1086b72c1cac62766279ec89605fe26edd69 Mon Sep 17 00:00:00 2001 From: hausken <79340822+hauskens@users.noreply.github.com> Date: Wed, 26 Jun 2024 00:15:38 +0200 Subject: [PATCH] Add hint to .DockerCompose in documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It took me a fair bit of time before i understood that '{{ .DockerCompose }}' was defined by the dockerCompose var in commandTemplates. In hindsight it is VERY obvious.. so i just wanted to contribute a comment that would have been useful to me when i first tried to set this up. --- docs/Config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Config.md b/docs/Config.md index e111bb6e..254adc4f 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -65,7 +65,7 @@ logs: since: '60m' # set to '' to show all logs tail: '' # set to 200 to show last 200 lines of logs commandTemplates: - dockerCompose: docker-compose + dockerCompose: docker-compose # Determines the Docker Compose command to run, referred to as .DockerCompose in commandTemplates restartService: '{{ .DockerCompose }} restart {{ .Service.Name }}' up: '{{ .DockerCompose }} up -d' down: '{{ .DockerCompose }} down'