From a87e9dd2808397f48c5775bb16a518bb436ebc5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=20Gl=C3=A4=C3=9F-St=C3=B6cker?= Date: Thu, 6 Oct 2022 13:34:10 +0200 Subject: [PATCH] made the default value for docker_experimantal the string "false" instead of bool because the jinja bool is uppercase and the daemon fails to start --- templates/daemon.json.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/daemon.json.j2 b/templates/daemon.json.j2 index 8bfd721..bb5aee2 100644 --- a/templates/daemon.json.j2 +++ b/templates/daemon.json.j2 @@ -1,4 +1,4 @@ { "data-root": "{{ docker_root | default('/var/lib/docker') }}", - "experimental": {{ docker_experimental | default (false) }} + "experimental": {{ docker_experimental | default ('false') }} }