Example #1
0
 public DockerCommandHealthCheck(string serviceName, string command, int timeoutInSeconds, string composeProjectName, int?portOfDistinction, ILogger logger) :
     base(serviceName, logger, timeoutInSeconds, portOfDistinction)
 {
     _composeProjectName = composeProjectName;
     _command            = command;
     _shell = ShellFactory.GetShell();
 }