Skip to content

Commit

Permalink
fix: remove path bacause of bug in paring logic (#1875)
Browse files Browse the repository at this point in the history
* fix: remove path bacause of bug in paring logic

Signed-off-by: Matej Vasek <[email protected]>

* Update pkg/docker/docker_client.go

---------

Signed-off-by: Matej Vasek <[email protected]>
  • Loading branch information
matejvasek committed Jul 18, 2023
1 parent a9e5281 commit 410f075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/docker/docker_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func NewClient(defaultHost string) (dockerClient client.CommonAPIClient, dockerH
dockerClient, err = client.NewClientWithOpts(
client.WithAPIVersionNegotiation(),
client.WithHTTPClient(httpClient),
client.WithHost("http://placeholder/"))
client.WithHost("tcp://placeholder/"))

if closer, ok := contextDialer.(io.Closer); ok {
dockerClient = clientWithAdditionalCleanup{
Expand Down

0 comments on commit 410f075

Please sign in to comment.