Sha256: 03350c5e9dff6919ff8c7d047447f0c72c59d3007d22903eec6afe23297f523c
Contents?: true
Size: 424 Bytes
Versions: 63
Compression:
Stored size: 424 Bytes
Contents
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 machine.ui.output(I18n.t("docker_provider.messages.starting")) driver.start(machine.id) @app.call(env) end end end end end
Version data entries
63 entries across 56 versions & 8 rubygems