Sha256: f6877e7ab5e0576f6f10170d6c9013385b131cebc4337c945d9e68f0a6e78378
Contents?: true
Size: 683 Bytes
Versions: 62
Compression:
Stored size: 683 Bytes
Contents
module VagrantPlugins module DockerProvider module Cap module PublicAddress def self.public_address(machine) return nil if machine.state.id != :running # If we're using a host VM, then return the IP of that # rather than of our own machine. if machine.provider.host_vm? host_machine = machine.provider.host_vm return nil if !host_machine.provider.capability?(:public_address) return host_machine.provider.capability(:public_address) end ssh_info = machine.ssh_info return nil if !ssh_info ssh_info[:host] end end end end end
Version data entries
62 entries across 55 versions & 7 rubygems