From 639a8f3bc9dd31e2d6167661d016cead7e301cd3 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Wed, 4 May 2022 06:47:36 -0400 Subject: [PATCH] Fixed indentation --- templates/docker-compose.yml.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/docker-compose.yml.j2 b/templates/docker-compose.yml.j2 index d5b34ec..f692cfd 100644 --- a/templates/docker-compose.yml.j2 +++ b/templates/docker-compose.yml.j2 @@ -111,12 +111,12 @@ services: {% endfor %} {% endif %} {% if container.logging.driver is defined %} - logging: - driver: {{ container.logging.driver }} + logging: + driver: {{ container.logging.driver }} {% if container.logging.options is defined %} - options: + options: {% for option in container.logging.options %} - {{ option }}: {{ container.logging.options[option] }} + {{ option }}: {{ container.logging.options[option] }} {% endfor %} {% endif %} {% endif %}