Sha256: 8b9da3809c39e75ec5e53c9f0b28f9b8fdb8e247317886612eb18860615340b7
Contents?: true
Size: 909 Bytes
Versions: 10
Compression:
Stored size: 909 Bytes
Contents
module VagrantPlugins module DockerProvider module Action class ForwardedPorts def initialize(app, env) @app = app end # Converts the `ports` docker provider param into proper network configs # of type :forwarded_port def call(env) env[:machine].provider_config.ports.each do |p| host_ip = nil protocol = "tcp" host, guest = p.split(":", 2) if guest.include?(":") host_ip = host host, guest = guest.split(":", 2) end guest, protocol = guest.split("/", 2) if guest.include?("/") env[:machine].config.vm.network "forwarded_port", host: host.to_i, guest: guest.to_i, host_ip: host_ip, protocol: protocol end @app.call(env) end end end end end
Version data entries
10 entries across 10 versions & 3 rubygems