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


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

def email
  @email
end

#namespaceObject

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

Required


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

def namespace
  @namespace
end

#passwordObject

password to use when logging into a docker registry.

Optional


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

def password
  @password
end

#urlObject

url of the docker registry to use.

Optional


144
145
146
# File 'lib/minke/config/config.rb', line 144

def url
  @url
end

#userObject

user to use when logging into a docker registry.

Optional


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

def user
  @user
end