Class: Minke::Config::DockerRegistrySettings

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/config/config.rb

Overview

DockerRegistrySettings encapsulates the settings related to the docker registry

Instance Attribute Summary collapse

Instance Attribute Details

#emailObject

email to use when logging into a docker registry.

Optional


169
170
171
# File 'lib/minke/config/config.rb', line 169

def email
  @email
end

#namespaceObject

namespace to use when tagging an image for the docker registry.

Required


175
176
177
# File 'lib/minke/config/config.rb', line 175

def namespace
  @namespace
end

#passwordObject

password to use when logging into a docker registry.

Optional


163
164
165
# File 'lib/minke/config/config.rb', line 163

def password
  @password
end

#urlObject

url of the docker registry to use.

Optional


151
152
153
# File 'lib/minke/config/config.rb', line 151

def url
  @url
end

#userObject

user to use when logging into a docker registry.

Optional


157
158
159
# File 'lib/minke/config/config.rb', line 157

def user
  @user
end