Exception: Yoker::DockerNotAvailableError

Inherits:
MissingDependencyError show all
Defined in:
lib/yoker/errors.rb

Overview

Raised when Docker is not running or accessible

Instance Method Summary collapse

Constructor Details

#initializeDockerNotAvailableError

Returns a new instance of DockerNotAvailableError.



25
26
27
28
29
30
# File 'lib/yoker/errors.rb', line 25

def initialize
  super(
    "Docker",
    "Please ensure Docker is installed and running. Visit https://docs.docker.com/get-docker/"
  )
end