-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Looks like it supports only HTTP
def construct(docker_host) do
case URI.parse(docker_host) do
%URI{scheme: "unix", path: path} ->
"http+unix://#{URI.encode_www_form(path)}/#{@api_version}"
%URI{scheme: "tcp"} = uri ->
URI.to_string(%{uri | scheme: "http", path: "/#{@api_version}"})
%URI{scheme: _, authority: _} = uri ->
URI.to_string(%{uri | path: "/#{@api_version}"})
end
endjarlah
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed