class Bolts::CLI

Public Instance Methods

ecs_exec(service, *command) click to toggle source
# File lib/bolts/cli.rb, line 18
def ecs_exec(service, *command)
  Docker.new(service, options.merge(command: command)).exec
end
ecs_run(service, *command) click to toggle source
# File lib/bolts/cli.rb, line 25
def ecs_run(service, *command)
  Docker.new(service, options.merge(command: command)).run
end
ssh(service, *command) click to toggle source
# File lib/bolts/cli.rb, line 12
def ssh(service, *command)
  Ssh.new(service, options.merge(command: command)).run
end