psContainerNames method

Future<List<String>?> psContainerNames({
  1. bool all = true,
})

Executes Docker command docker ps --format "{{.Names}}"

Implementation

Future<List<String>?> psContainerNames({bool all = true}) async =>
    DockerCMD.psContainerNames(this, all: all);