Sha256: 5f9ad4a2351b34b9742e96bbe2129fadd6bdc03a22186ac500bc97547c60adf6
Contents?: true
Size: 923 Bytes
Versions: 4
Compression:
Stored size: 923 Bytes
Contents
module Minke module Docker ## # ServiceDiscovery allows you to look up the publicly accessible address and port for a server class ServiceDiscovery def initialize config reader = Minke::Config::Reader.new @config = reader.read config end ## # Will attempt to locate the public details for a running container given # its name and private port # Parameters: # - container_name: the name of the running container # - private_port: the private port which you wish to retrieve an address for # - task: :run, :cucumber search either the run or cucumber section of the config def public_address_for container_name, private_port, task compose = Minke::Docker::DockerCompose.new @config.compose_file_for(task), Minke::Docker::SystemRunner.new compose.public_address container_name, private_port end end end end
Version data entries
4 entries across 4 versions & 1 rubygems