mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-21 13:28:42 +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(
|
||||
'build',
|
||||
options.parallel ? [ '--parallel' ] : [],
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
@ -251,7 +251,7 @@ const buildMany = function (services, options) {
|
|||
return execCompose(
|
||||
'build',
|
||||
options.parallel ? [ '--parallel' ].concat(services) : services,
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
@ -343,7 +343,7 @@ const push = function (options) {
|
|||
return execCompose(
|
||||
'push',
|
||||
options.ignorePushFailures ? [ '--ignore-push-failures' ] : [],
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue