With recent ansible versions conditionals must have a boolean value. The playbooks of the docker driver in this plugin have this issue when using `when: (lookup('env', 'HOME')) ` in - src/molecule_plugins/docker/playbooks/create.yml - src/molecule_plugins/docker/playbooks/destroy.yml can be fixed by changing to `when: (lookup('env', 'HOME')) != ''`