Skip to content

Commit 44e3f12

Browse files
o-v-tAVVS
authored andcommittedOct 3, 2019
feat(deploy): extra docker compose (#15)
1 parent f95254d commit 44e3f12

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed
 

‎bin/cmds/test.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@ exports.builder = (yargs) => (
99
yargs
1010
.commandDir('test_cmds')
1111
.option('docker_compose', {
12-
type: 'array',
13-
describe: 'docker-compose files for testing',
14-
default: ['./test/docker-compose.yml'],
12+
describe: 'docker-compose file for testing',
13+
default: './test/docker-compose.yml',
1514
normalize: true,
1615
})
16+
.option('docker_compose_multi', {
17+
alias: 'dcm',
18+
describe: 'docker-compose files that will be started in provided order',
19+
type: 'string',
20+
array: true,
21+
default: [],
22+
})
1723
.option('parallel', {
1824
type: 'number',
1925
description: 'run test suites in parallel',

‎bin/cmds/test_cmds/compose.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const {
1111
} = require('shelljs');
1212

1313
const isWin = process.platform === 'win32';
14-
const withComposeFile = (filepaths) => `-f ${filepaths.join(' -f ')}`;
14+
const withComposeFile = (filepath) => `-f ${filepath}`;
1515

1616
exports.command = 'compose';
1717
exports.desc = 'installs compose on the system';
@@ -62,6 +62,10 @@ exports.handler = (argv) => {
6262
}
6363
}
6464

65+
if (argv.docker_compose_multi.length > 0) {
66+
dockerComposeFiles = `-f ${argv.docker_compose_multi.join(' -f ')}`;
67+
}
68+
6569
// add link to compose file
6670
argv.compose = ShellString(`"${compose}" ${dockerComposeFiles}`);
6771

0 commit comments

Comments
 (0)
Please sign in to comment.