Sha256: c0559b7edb686f602e4de327a34271567c420145c6818e60c965cc17c3212e1e
Contents?: true
Size: 672 Bytes
Versions: 3
Compression:
Stored size: 672 Bytes
Contents
begin require "vagrant" rescue LoadError raise "The Vagrant AWS plugin must be run within Vagrant." end module VagrantPlugins module VagrantCommunicatorDocker class Plugin < Vagrant.plugin("2") name "Docker Communicator" description <<-DESC This plugin allows Vagrant to communicate with docker instances that do not have SSH, but can use docker exec to run commands within DESC communicator("docker") do require File.expand_path("../vagrant-communicator-docker", __FILE__) Communicator end config("communicator") do require_relative "config" Config end end end end
Version data entries
3 entries across 3 versions & 1 rubygems