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

This commit is contained in:
Micha Gläß-Stöcker 2022-10-06 13:34:10 +02:00
parent 565c92f38f
commit a87e9dd280

View file

@ -1,4 +1,4 @@
{
"data-root": "{{ docker_root | default('/var/lib/docker') }}",
"experimental": {{ docker_experimental | default (false) }}
"experimental": {{ docker_experimental | default ('false') }}
}