Skip to content

Commit

Permalink
fix: set https on docker provider getProxyURL
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidapaulopt committed Dec 11, 2024
1 parent a641d6c commit 6c96b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/targetproviders/docker/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (c *container) getProxyURL() (*url.URL, error) {
}

// validate url
return url.Parse(c.scheme + "://" + name)
return url.Parse("https://" + name)
}

// getName method returns the name of the container
Expand Down

0 comments on commit 6c96b43

Please sign in to comment.