diff --git a/app/discovery/provider/docker.go b/app/discovery/provider/docker.go index 70dfd45..38e92fb 100644 --- a/app/discovery/provider/docker.go +++ b/app/discovery/provider/docker.go @@ -373,7 +373,7 @@ func NewDockerClient(host, network string) DockerClient { func (d *dockerClient) ListContainers() ([]containerInfo, error) { // Minimum API version that returns attached networks // docs.docker.com/engine/api/version-history/#v122-api-changes - const APIVersion = "v1.22" + const APIVersion = "v1.24" resp, err := d.client.Get(fmt.Sprintf("http://localhost/%s/containers/json", APIVersion)) if err != nil { diff --git a/app/discovery/provider/docker_test.go b/app/discovery/provider/docker_test.go index 7efcf4f..b875220 100644 --- a/app/discovery/provider/docker_test.go +++ b/app/discovery/provider/docker_test.go @@ -369,7 +369,7 @@ func TestDocker_refresh(t *testing.T) { func TestDockerClient(t *testing.T) { srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - require.Equal(t, `/v1.22/containers/json`, r.URL.Path) + require.Equal(t, `/v1.24/containers/json`, r.URL.Path) // obtained using curl --unix-socket /var/run/docker.sock http://localhost/v1.41/containers/json resp, err := os.ReadFile("testdata/containers.json")