Sha256: 96534b1ff528f3b0fdc9f7738e0243694997f3a23788374948085eade77311cd
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
require 'cgi' require 'json' require 'excon' require 'tempfile' require 'archive/tar/minitar' # The top-level module for this gem. It's purpose is to hold global # configuration variables that are used as defaults in other classes. module Docker extend self attr_reader :creds def url @url ||= 'http://localhost' end def options @options ||= { :port => 4243 } end def url=(new_url) @url = new_url reset_connection! end def options=(new_options) @options = { :port => 4243 }.merge(new_options) reset_connection! end def connection @connection ||= Connection.new(url, options) end def reset_connection! @connection = nil end # Get the version of Go, Docker, and optionally the Git commit. def version Util.parse_json(connection.request(:get, '/version')) end # Get more information about the Docker server. def info Util.parse_json(connection.request(:get, '/info')) end # Login to the Docker registry. def authenticate!(options = {}) @creds = options.to_json connection.post(:path => '/auth', :body => @creds) true end # When the correct version of Docker is installed, returns true. Otherwise, # raises a VersionError. def validate_version! Docker.info true rescue Docker::Error::DockerError raise Docker::Error::VersionError, "Expected API Version: #{API_VERSION}" end end require 'docker/version' require 'docker/error' require 'docker/util' require 'docker/connection' require 'docker/model' require 'docker/container' require 'docker/image'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
docker-api-1.1.0 | lib/docker.rb |