fix: add check for undefined docker_daemon_run_options variable in docker.j2 file

before, if the variable was undefined (run docker with default options), a play filed
This commit is contained in:
cuqmbr 2025-01-10 22:08:37 +02:00
parent b8077f1a7d
commit c7ccc53b07
Signed by: cuqmbr
GPG Key ID: 0AA446880C766199

View File

@ -1 +1 @@
DOCKER_OPTS="{{ docker_daemon_run_options }}"
DOCKER_OPTS="{% if docker_daemon_run_options is defined %}{{ docker_daemon_run_options }}{% endif %}"