module Docker::Interactive

Public Instance Methods

warn(command) click to toggle source
# File lib/docker/interactive.rb, line 5
def warn(command)
  Kernel.warn (
    "Interactive containers cannot (yet) be run within this " +
    "library. Please copy the following command into a new "  +
    "shell:\n\n\t#{command}"
  )
end