2014-03-26 23:45:46 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module DockerProvider
|
|
|
|
module Action
|
|
|
|
class Start
|
|
|
|
def initialize(app, env)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
machine = env[:machine]
|
|
|
|
driver = machine.provider.driver
|
2014-04-16 02:13:38 +00:00
|
|
|
|
2014-04-18 00:02:09 +00:00
|
|
|
machine.ui.output(I18n.t("docker_provider.messages.starting"))
|
|
|
|
driver.start(machine.id)
|
2014-04-16 02:13:38 +00:00
|
|
|
|
2014-03-26 23:45:46 +00:00
|
|
|
@app.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|