Specifying docker_host_url in the configuration does not work because dokken still tries to connect to the default docker and errors our when that fails.
Version
kitchen-dokken 2.20.3
Environment
Fedora 39
Scenario
Trying to use a user podman instance as the docker implementation.
:ghost: Brief Description
Specifying
docker_host_url
in the configuration does not work because dokken still tries to connect to the default docker and errors our when that fails.Version
kitchen-dokken 2.20.3
Environment
Fedora 39
Scenario
Trying to use a user podman instance as the docker implementation.
Steps to Reproduce
Specify the URL as follows:
Expected Result
It works.
Actual Result
It errors out trying to make a TCP connection to docker:
:heavy_plus_sign: Additional context
The code at https://github.com/test-kitchen/kitchen-dokken/blob/1035b971a7685633e126084f731a334b492727e2/lib/kitchen/driver/dokken.rb#L48 causes
docker_info
to be called which tries to make a connection todefault_docker_host
which errors out.