Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4cf5afa
Choose a base ref
...
head repository: docker/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 211e74b
Choose a head ref
  • 7 commits
  • 13 files changed
  • 2 contributors

Commits on May 7, 2024

  1. Fix hang when container fails to start

    Signed-off-by: Laura Brehm <[email protected]>
    (cherry picked from commit 31644d5)
    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed May 7, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    laurazard Laura Brehm
    Copy the full SHA
    ccea7d8 View commit details
  2. Add e2e tests for run w/ bad entrypoint

    Signed-off-by: Laura Brehm <[email protected]>
    (cherry picked from commit 8d6e571)
    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed May 7, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    laurazard Laura Brehm
    Copy the full SHA
    4add46d View commit details
  3. Merge pull request #5062 from laurazard/cherry-pick-run-hang

    [26.1 backport] Fix hang when container fails to start
    vvoland authored May 7, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    53a3f0b View commit details

Commits on May 8, 2024

  1. update to go1.21.10

    These minor releases include 2 security fixes following the security policy:
    
    - cmd/go: arbitrary code execution during build on darwin
    On Darwin, building a Go module which contains CGO can trigger arbitrary code execution when using the Apple version of ld, due to
    usage of the -lto_library flag in a "#cgo LDFLAGS" directive.
    Thanks to Juho Forsén of Mattermost for reporting this issue.
    This is CVE-2024-24787 and Go issue https://go.dev/issue/67119.
    
    - net: malformed DNS message can cause infinite loop
    A malformed DNS message in response to a query can cause the Lookup functions to get stuck in an infinite loop.
    Thanks to long-name-let-people-remember-you on GitHub for reporting this issue, and to Mateusz Poliwczak for bringing the issue to
    our attention.
    This is CVE-2024-24788 and Go issue https://go.dev/issue/66754.
    
    View the release notes for more information:
    https://go.dev/doc/devel/release#go1.22.3
    
    - https://github.com/golang/go/issues?q=milestone%3AGo1.21.10+label%3ACherryPickApproved
    - full diff: golang/go@go1.21.9...go1.21.10
    
    **- Description for the changelog**
    
    ```markdown changelog
    Update Go runtime to 1.21.10
    ```
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    (cherry picked from commit eb99994)
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed May 8, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    vvoland Paweł Gronowski
    Copy the full SHA
    c1d70d1 View commit details
  2. vendor: github.com/docker/docker v26.1.2-dev (ef1912d8b6ae)

    - full diff: moby/moby@ac2de55...ef1912d
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed May 8, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    vvoland Paweł Gronowski
    Copy the full SHA
    e64914c View commit details
  3. Merge pull request #5065 from vvoland/v26.1-5064

    [26.1 backport] update to go1.21.10
    vvoland authored May 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8beff78 View commit details
  4. Merge pull request #5066 from vvoland/vendor-docker

    [26.1] vendor: github.com/docker/docker v26.1.2-dev (ef1912d8b6ae)
    vvoland authored May 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    211e74b View commit details
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.9
go-version: 1.21.10
-
name: Test
run: |
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ ARG BASE_VARIANT=alpine
ARG ALPINE_VERSION=3.18
ARG BASE_DEBIAN_DISTRO=bookworm

ARG GO_VERSION=1.21.9
ARG GO_VERSION=1.21.10
ARG XX_VERSION=1.4.0
ARG GOVERSIONINFO_VERSION=v1.3.0
ARG GOTESTSUM_VERSION=v1.10.0
6 changes: 5 additions & 1 deletion cli/command/container/run.go
Original file line number Diff line number Diff line change
@@ -186,7 +186,11 @@ func runContainer(ctx context.Context, dockerCli command.Cli, runOpts *runOption
defer closeFn()
}

statusChan := waitExitOrRemoved(ctx, apiClient, containerID, copts.autoRemove)
// New context here because we don't to cancel waiting on container exit/remove
// when we cancel attach, etc.
statusCtx, cancelStatusCtx := context.WithCancel(context.WithoutCancel(ctx))
defer cancelStatusCtx()
statusChan := waitExitOrRemoved(statusCtx, apiClient, containerID, copts.autoRemove)

// start the container
if err := apiClient.ContainerStart(ctx, containerID, container.StartOptions{}); err != nil {
1 change: 1 addition & 0 deletions cli/command/container/utils.go
Original file line number Diff line number Diff line change
@@ -36,6 +36,7 @@ func waitExitOrRemoved(ctx context.Context, apiClient client.APIClient, containe

statusC := make(chan int)
go func() {
defer close(statusC)
select {
case <-ctx.Done():
return
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "GO_VERSION" {
default = "1.21.9"
default = "1.21.10"
}
variable "VERSION" {
default = ""
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION=1.21.9
ARG GO_VERSION=1.21.10
ARG ALPINE_VERSION=3.18

ARG BUILDX_VERSION=0.12.1
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.lint
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION=1.21.9
ARG GO_VERSION=1.21.10
ARG ALPINE_VERSION=3.18
ARG GOLANGCI_LINT_VERSION=v1.55.2

2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.vendor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION=1.21.9
ARG GO_VERSION=1.21.10
ARG ALPINE_VERSION=3.18
ARG MODOUTDATED_VERSION=v0.8.0

17 changes: 17 additions & 0 deletions e2e/container/run_test.go
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ import (
"fmt"
"strings"
"testing"
"time"

"github.com/docker/cli/e2e/internal/fixtures"
"github.com/docker/cli/internal/test/environment"
@@ -34,6 +35,22 @@ func TestRunAttachedFromRemoteImageAndRemove(t *testing.T) {
golden.Assert(t, result.Stderr(), "run-attached-from-remote-and-remove.golden")
}

// Regression test for https://github.com/docker/cli/issues/5053
func TestRunInvalidEntrypointWithAutoremove(t *testing.T) {
environment.SkipIfDaemonNotLinux(t)

result := make(chan *icmd.Result)
go func() {
result <- icmd.RunCommand("docker", "run", "--rm", fixtures.AlpineImage, "invalidcommand")
}()
select {
case r := <-result:
r.Assert(t, icmd.Expected{ExitCode: 127})
case <-time.After(4 * time.Second):
t.Fatal("test took too long, shouldn't hang")
}
}

func TestRunWithContentTrust(t *testing.T) {
skip.If(t, environment.RemoteDaemon())

2 changes: 1 addition & 1 deletion e2e/testdata/Dockerfile.gencerts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION=1.21.9
ARG GO_VERSION=1.21.10

FROM golang:${GO_VERSION}-alpine AS generated
ENV GOTOOLCHAIN=local
2 changes: 1 addition & 1 deletion vendor.mod
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ require (
github.com/creack/pty v1.1.21
github.com/distribution/reference v0.5.0
github.com/docker/distribution v2.8.3+incompatible
github.com/docker/docker v26.1.1-0.20240430094649-ac2de55998d4+incompatible
github.com/docker/docker v26.1.2-0.20240508085902-ef1912d8b6ae+incompatible
github.com/docker/docker-credential-helpers v0.8.1
github.com/docker/go-connections v0.5.0
github.com/docker/go-units v0.5.0
4 changes: 2 additions & 2 deletions vendor.sum
Original file line number Diff line number Diff line change
@@ -57,8 +57,8 @@ github.com/distribution/reference v0.5.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5
github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v26.1.1-0.20240430094649-ac2de55998d4+incompatible h1:z6g58Ao0MTHcTLDDZfsJEifSZSSEuc9siuHMMST1WH0=
github.com/docker/docker v26.1.1-0.20240430094649-ac2de55998d4+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v26.1.2-0.20240508085902-ef1912d8b6ae+incompatible h1:PcRQNw8eAMTjdnD7+y3IeJcsCKqxHmlT0MmqfNs9Jc4=
github.com/docker/docker v26.1.2-0.20240508085902-ef1912d8b6ae+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker-credential-helpers v0.8.1 h1:j/eKUktUltBtMzKqmfLB0PAgqYyMHOp5vfsD1807oKo=
github.com/docker/docker-credential-helpers v0.8.1/go.mod h1:P3ci7E3lwkZg6XiHdRKft1KckHiO9a2rNtyFbZ/ry9M=
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0=
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ github.com/docker/distribution/registry/client/transport
github.com/docker/distribution/registry/storage/cache
github.com/docker/distribution/registry/storage/cache/memory
github.com/docker/distribution/uuid
# github.com/docker/docker v26.1.1-0.20240430094649-ac2de55998d4+incompatible
# github.com/docker/docker v26.1.2-0.20240508085902-ef1912d8b6ae+incompatible
## explicit
github.com/docker/docker/api
github.com/docker/docker/api/types