diff --git a/lib/utils/compose_ts.ts b/lib/utils/compose_ts.ts index 3a34c7fd9..ede0c1d9a 100644 --- a/lib/utils/compose_ts.ts +++ b/lib/utils/compose_ts.ts @@ -1255,7 +1255,16 @@ async function pushAndUpdateServiceImages( tty, getChalk().blue('[Push]') + ' ', ); - const reporters = progress.aggregateProgress(images.length, renderer); + function debugProgress(onProgress: (e: any) => void): (e: any) => void { + return (e) => { + console.log(JSON.stringify(e)); + onProgress(e); + }; + } + const reporters = progress.aggregateProgress( + images.length, + debugProgress(renderer), + ); const pushImage = async ( localImage: Dockerode.Image,