Class: Minke::Config::DockerRegistrySettings
- Inherits:
-
Object
- Object
- Minke::Config::DockerRegistrySettings
- Defined in:
- lib/minke/config/docker_registry_settings.rb
Overview
DockerRegistrySettings encapsulates the settings related to the docker registry
Instance Attribute Summary collapse
-
#email ⇒ Object
email to use when logging into a docker registry.
-
#namespace ⇒ Object
namespace to use when tagging an image for the docker registry.
-
#password ⇒ Object
password to use when logging into a docker registry.
-
#url ⇒ Object
url of the docker registry to use.
-
#user ⇒ Object
user to use when logging into a docker registry.
Instance Attribute Details
#email ⇒ Object
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 |
#namespace ⇒ Object
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 |
#password ⇒ Object
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 |
#url ⇒ Object
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 |
#user ⇒ Object
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 |