You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
`Neither ${chalk.white('--export-to')} or ${chalk.white('--tag')} was specified, either specify ${chalk.white('--export-to')} to export plugins to a directory or ${chalk.white('--tag')} to export plugins to a container image`,
`Unable to find ${containerTool} command: ${e}\nMake sure that ${containerTool} is installed and available in your PATH.`,
32
-
);
33
-
return;
51
+
// Fallback: try docker if not already docker
52
+
if(containerToolCmd!=='docker'){
53
+
try{
54
+
awaitTask.forCommand(`docker --version`);
55
+
Task.log(
56
+
`Warning: Unable to find ${containerToolCmd} command. Falling back to docker.`,
57
+
);
58
+
containerToolCmd='docker';
59
+
buildCommand='build';
60
+
toolAvailable=true;
61
+
}catch(dockerErr){
62
+
Task.error(
63
+
`Unable to find ${containerToolCmd} command: ${e}\nTried falling back to docker, but docker is also not available: ${dockerErr}\nMake sure that a supported container tool is installed and available in your PATH.`,
64
+
);
65
+
return;
66
+
}
67
+
}else{
68
+
Task.error(
69
+
`Unable to find docker command: ${e}\nMake sure that docker is installed and available in your PATH.`,
0 commit comments