From f2c2ab7c84661deb40f464371090e9b6d7600723 Mon Sep 17 00:00:00 2001 From: Milosz Wasilewski Date: Wed, 26 Jun 2024 09:40:23 +0100 Subject: [PATCH] automated: linux: support hello-world docker image from AWS This patch enables "hello-world" image testing from Amazon mirror. It's required for cases where hub.docker.com is not available. Signed-off-by: Milosz Wasilewski --- automated/linux/docker/docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/linux/docker/docker.sh b/automated/linux/docker/docker.sh index 072b96679..19ddc271a 100755 --- a/automated/linux/docker/docker.sh +++ b/automated/linux/docker/docker.sh @@ -50,7 +50,7 @@ systemctl start docker exit_on_fail "start-docker-service" "${skip_list}" case "${IMAGE}" in - hello-world) + "hello-world" | "public.ecr.aws/docker/library/hello-world") docker run --rm "${IMAGE}" ;; *)