vagrant/plugins/providers/docker/action/start.rb

22 lines
425 B
Ruby

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
driver.start(machine.id)
# TODO(mitchellh): Wait for container to go to "running" state.
@app.call(env)
end
end
end
end
end