StartCommand constructor

StartCommand()

Implementation

StartCommand() {
  argParser.addFlag('debug',
      defaultsTo: false,
      abbr: 'd',
      negatable: false,
      help: 'Outputs additional logging information');

  argParser.addFlag('interactive',
      defaultsTo: false,
      abbr: 'i',
      negatable: false,
      help:
          'Starts the container in the foreground so you can see all output');
}