def runBackground(args, cwd=None, suppressOutput=True, collectStdout=False, collectStderr=False):
    """
  Run docker with the given command line arguments. Return Docker's pid.
  """
    return subprocessExtras.callBackground(
        [getAndVerifyExecutable()] + args,
        cwd,
        suppressOutput=suppressOutput,
        collectStdout=collectStdout,
        collectStderr=collectStderr,
    )
Beispiel #2
0
def runBackground(args,
                  cwd=None,
                  suppressOutput=True,
                  collectStdout=False,
                  collectStderr=False):
    """
  Run docker with the given command line arguments. Return Docker's pid.
  """
    return subprocessExtras.callBackground([getAndVerifyExecutable()] + args,
                                           cwd,
                                           suppressOutput=suppressOutput,
                                           collectStdout=collectStdout,
                                           collectStderr=collectStderr)
Beispiel #3
0
def runDockerBackground(args, cwd=None):
    """
  Run docker with the given command line arguments. Return Docker's pid.
  """
    return subprocessExtras.callBackground([getAndVerifyDockerExecutable()] +
                                           args, cwd)
Beispiel #4
0
def runDockerBackground(args,cwd=None):
  """
  Run docker with the given command line arguments. Return Docker's pid.
  """
  return subprocessExtras.callBackground([getAndVerifyDockerExecutable()]+args,cwd)