From 893f29bd0c2d5a59d01218f1fe759b8de610854e Mon Sep 17 00:00:00 2001 From: Jason Learst Date: Mon, 22 Apr 2024 13:27:06 -0400 Subject: [PATCH] remove extra quotes from test --- templates/docker-compose.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/docker-compose.yml.j2 b/templates/docker-compose.yml.j2 index 1acd075..cfb22e5 100644 --- a/templates/docker-compose.yml.j2 +++ b/templates/docker-compose.yml.j2 @@ -167,7 +167,7 @@ services: {% endif %} {% if container.healthcheck is defined %} healthcheck: - test: "{{ container.healthcheck.test }}" + test: {{ container.healthcheck.test }} {% if container.healthcheck.interval is defined %} interval: {{ container.healthcheck.interval }} {% endif %}