Class: Minke::Config::DockerRegistrySettings

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/config/docker_registry_settings.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


28
29
30
# File 'lib/minke/config/docker_registry_settings.rb', line 28

def email
  @email
end

#namespaceObject

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

Required


34
35
36
# File 'lib/minke/config/docker_registry_settings.rb', line 34

def namespace
  @namespace
end

#passwordObject

password to use when logging into a docker registry.

Optional


22
23
24
# File 'lib/minke/config/docker_registry_settings.rb', line 22

def password
  @password
end

#urlObject

url of the docker registry to use.

Optional


10
11
12
# File 'lib/minke/config/docker_registry_settings.rb', line 10

def url
  @url
end

#userObject

user to use when logging into a docker registry.

Optional


16
17
18
# File 'lib/minke/config/docker_registry_settings.rb', line 16

def user
  @user
end