catServiceLogs method
Returns a Service logs as String.
Implementation
Future<String?> catServiceLogs(
String containerNameOrID, {
bool stderr = false,
Pattern? waitDataMatcher,
Duration? waitDataTimeout,
bool waitExit = false,
int? desiredExitCode,
bool follow = false,
}) =>
DockerCMD.catServiceLogs(this, containerNameOrID,
stderr: stderr,
waitDataMatcher: waitDataMatcher,
waitDataTimeout: waitDataTimeout,
waitExit: waitExit,
desiredExitCode: desiredExitCode,
follow: follow);