class Redmine::Commands::Docker::Start

Public Class Methods

new(config) click to toggle source
# File lib/redmine/commands/docker/start.rb, line 5
def initialize(config)
  @config = config
end

Public Instance Methods

command_line() click to toggle source
# File lib/redmine/commands/docker/start.rb, line 9
def command_line
  "docker start #{@config.name}"
end