PodmanCommand constructor

PodmanCommand()

Implementation

PodmanCommand() {
  argParser.addOption(
    'image',
    abbr: 'i',
    help:
        'Name of the Podman image to build/run. You will be prompted if not provided.',
  );
  argParser.addFlag(
    'logs',
    abbr: 'l',
    negatable: false,
    help: 'Show logs for the last built container image.',
  );
}