We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c1b86 commit 640bdb4Copy full SHA for 640bdb4
tasks/util/container_commands.js
@@ -19,6 +19,13 @@ containerCommands.setup = [
19
'echo '
20
].join(' && ');
21
22
+containerCommands.dockerRun = [
23
+ 'docker run -d',
24
+ '--name', constants.testContainerName,
25
+ '-v', constants.pathToRoot + ':' + constants.testContainerHome,
26
+ '-p', constants.testContainerUrl,
27
+ 'plotly/testbed:latest'
28
+].join(' ');
29
30
containerCommands.getRunCmd = function(commands, isCI) {
31
var _commands = Array.isArray(commands) ? commands.slice() : [commands];
0 commit comments