diff --git a/pkg/e2e/compose_test.go b/pkg/e2e/compose_test.go index 232866380..43c36ae02 100644 --- a/pkg/e2e/compose_test.go +++ b/pkg/e2e/compose_test.go @@ -151,7 +151,7 @@ func TestComposePull(t *testing.T) { t.Run("Verify skipped pull if image is already present locally", func(t *testing.T) { // make sure the requied image is present - c.RunDockerCmd(t, "pull", "alpine:3.13") + c.RunDockerCmd(t, "pull", "alpine:3.13.12") res := c.RunDockerComposeCmd(t, "--project-directory", "fixtures/compose-pull/image-present-locally", "pull") output := res.Combined() diff --git a/pkg/e2e/fixtures/compose-pull/image-present-locally/docker-compose.yaml b/pkg/e2e/fixtures/compose-pull/image-present-locally/docker-compose.yaml index 1ea2585a6..ebc0df079 100644 --- a/pkg/e2e/fixtures/compose-pull/image-present-locally/docker-compose.yaml +++ b/pkg/e2e/fixtures/compose-pull/image-present-locally/docker-compose.yaml @@ -1,4 +1,4 @@ services: simple: - image: alpine:3.13 + image: alpine:3.13.12 command: top