From 62b7d2fd1a80023fb9aff4dfc54a8faa72040459 Mon Sep 17 00:00:00 2001 From: Cameron Diver Date: Wed, 16 Oct 2019 12:45:17 +0100 Subject: [PATCH] Use all available on-device images during local push Change-type: patch Signed-off-by: Cameron Diver --- lib/utils/device/deploy.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/utils/device/deploy.ts b/lib/utils/device/deploy.ts index ad63c4d0..49ed34ff 100644 --- a/lib/utils/device/deploy.ts +++ b/lib/utils/device/deploy.ts @@ -443,8 +443,7 @@ function assignOutputHandlers( } async function getDeviceDockerImages(docker: Docker): Promise { - const images = await docker.listImages(); - + const images = await docker.listImages({ all: true }); return _.map(images, 'Id'); }