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 10 def self.connect(uri = 'https://registry.hub.docker.com', opts = {}) @reg = DockerRegistry2::Registry.new(uri, opts) end
manifest(repository, tag)
click to toggle source
# File lib/docker_registry2.rb, line 22 def self.manifest(repository, tag) @reg.manifest(repository, tag) end
manifest_digest(repository, tag)
click to toggle source
# File lib/docker_registry2.rb, line 26 def self.manifest_digest(repository, tag) @reg.manifest_digest(repository, tag) end
search(query = '')
click to toggle source
# File lib/docker_registry2.rb, line 14 def self.search(query = '') @reg.search(query) end