File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/testcontainers/src/container-runtime/utils Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ export const pullImage = async (
17
17
) : Promise < void > => {
18
18
try {
19
19
if ( ! options . force && ( await imageExists ( dockerode , options . imageName ) ) ) {
20
- log . debug ( `Not pulling image "${ options . imageName } " as it already exists` ) ;
20
+ log . debug ( `Not pulling image "${ options . imageName . string } " as it already exists` ) ;
21
21
return ;
22
22
}
23
23
24
- log . info ( `Pulling image "${ options . imageName } "...` ) ;
24
+ log . info ( `Pulling image "${ options . imageName . string } "...` ) ;
25
25
const authconfig = await getAuthConfig ( options . imageName . registry ?? indexServerAddress ) ;
26
26
const stream = await dockerode . pull ( options . imageName . string , { authconfig } ) ;
27
27
return new Promise < void > ( ( resolve ) => {
@@ -33,7 +33,7 @@ export const pullImage = async (
33
33
stream . on ( "end" , resolve ) ;
34
34
} ) ;
35
35
} catch ( err ) {
36
- log . error ( `Failed to pull image "${ options . imageName } ": ${ err } ` ) ;
36
+ log . error ( `Failed to pull image "${ options . imageName . string } ": ${ err } ` ) ;
37
37
throw err ;
38
38
}
39
39
} ;
You can’t perform that action at this time.
0 commit comments