mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-24 12:35:32 +00:00
parent
65250af42a
commit
0b73648d00
1 changed files with 3 additions and 3 deletions
6
index.js
6
index.js
|
|
@ -231,7 +231,7 @@ const buildAll = function (options) {
|
||||||
return execCompose(
|
return execCompose(
|
||||||
'build',
|
'build',
|
||||||
options.parallel ? [ '--parallel' ] : [],
|
options.parallel ? [ '--parallel' ] : [],
|
||||||
options,
|
options
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -251,7 +251,7 @@ const buildMany = function (services, options) {
|
||||||
return execCompose(
|
return execCompose(
|
||||||
'build',
|
'build',
|
||||||
options.parallel ? [ '--parallel' ].concat(services) : services,
|
options.parallel ? [ '--parallel' ].concat(services) : services,
|
||||||
options,
|
options
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -343,7 +343,7 @@ const push = function (options) {
|
||||||
return execCompose(
|
return execCompose(
|
||||||
'push',
|
'push',
|
||||||
options.ignorePushFailures ? [ '--ignore-push-failures' ] : [],
|
options.ignorePushFailures ? [ '--ignore-push-failures' ] : [],
|
||||||
options,
|
options
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue