module DockerRegistry2
Constants
- VERSION
Public Class Methods
connect(uri="https://registry.hub.docker.com",opts={})
click to toggle source
# File lib/docker_registry2.rb, line 9 def self.connect(uri="https://registry.hub.docker.com",opts={}) @reg = DockerRegistry2::Registry.new(uri,opts) @reg.ping @reg end
manifest(repository,tag)
click to toggle source
# File lib/docker_registry2.rb, line 23 def self.manifest(repository,tag) @reg.manifest(repository,tag) end
search(query = '')
click to toggle source
# File lib/docker_registry2.rb, line 15 def self.search(query = '') @reg.search(query) end