DockerCLI/e2e/image
Sebastiaan van Stijn 94443920b1
Fix: docker push --quiet suppressing errors and exit code
Before this patch:

    docker push --quiet nosuchimage
    docker.io/library/nosuchimage

    echo $?
    0

With this patch applied:

    docker push --quiet nosuchimage:latest
    An image does not exist locally with the tag: nosuchimage

    echo $?
    1

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-01-24 13:53:24 +01:00
..
testdata Add option to pull images quietly 2018-12-19 13:48:41 +01:00
build_test.go Make test-e2e run against experimental and non-experimental daemon 2018-06-25 11:46:35 +02:00
main_test.go update image pull tests 2017-10-10 11:20:54 -07:00
pull_test.go Add option to pull images quietly 2018-12-19 13:48:41 +01:00
push_test.go Fix: docker push --quiet suppressing errors and exit code 2020-01-24 13:53:24 +01:00