Module: Dockerspec::Builder::ConfigHelpers
- Included in:
- Dockerspec::Builder
- Defined in:
- lib/dockerspec/builder/config_helpers.rb
Overview
Some helpers to get container image information from its JSON data.
Note: Keep in mind that not all the available Dockerfile instructions
can be checked in the docker image. You should use
Serverspec::RSpec::Resources#docker_run to check some
instructions like FROM
, RUN
, ADD
and COPY
(see the examples
there).
Instance Method Summary collapse
-
#architecture ⇒ String
(also: #arch)
Returns the image architecture.
-
#cmd ⇒ Array
Returns the image command (
CMD
). -
#entrypoint ⇒ Array
Returns the image entrypoint (
ENTRYPOINT
). -
#envs ⇒ Hash
(also: #env)
Returns the image environment (
ENV
). -
#expose ⇒ String
Returns the first exposed port (
EXPOSE
). -
#exposes ⇒ Array
Returns the image exposed ports (
EXPOSE
). -
#image_config ⇒ Hash
Returns the image configuration.
-
#label ⇒ String
Returns the first label as a string (
LABEL
). -
#labels ⇒ Hash
Returns the image labels (
LABEL
). -
#maintainer ⇒ String
Returns the image maintainer or author (
MAINTAINER
). -
#onbuild ⇒ String
Returns the first onbuild instruction (
ONBUILD
). -
#onbuilds ⇒ Array
Returns the onbuild instructions (
ONBUILD
). -
#os ⇒ String
Returns the image Operating System.
-
#size ⇒ Integer
Returns the image size in bytes.
-
#stopsignal ⇒ String
Returns the stop signal (
STOPSIGNAL
). -
#user ⇒ String
Returns the image user (
USER
). -
#volume ⇒ String
Returns the first volume (
VOLUME
). -
#volumes ⇒ Array
Returns the image volumes (
VOLUME
). -
#workdir ⇒ String
Returns the image workdir (
WORKDIR
).
Instance Method Details
permalink #architecture ⇒ String Also known as: arch
Returns the image architecture.
71 72 73 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 71 def architecture @image.json['Architecture'] end |
permalink #cmd ⇒ Array
Returns the image command (CMD
).
138 139 140 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 138 def cmd image_config['Cmd'] end |
permalink #entrypoint ⇒ Array
Returns the image entrypoint (ENTRYPOINT
).
282 283 284 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 282 def entrypoint image_config['Entrypoint'] end |
permalink #envs ⇒ Hash Also known as: env
Returns the image environment (ENV
).
253 254 255 256 257 258 259 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 253 def envs @env ||= image_config['Env'].each_with_object({}) do |var, memo| key, value = var.split('=', 2) memo[key] = value end end |
permalink #expose ⇒ String
Returns the first exposed port (EXPOSE
).
227 228 229 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 227 def expose exposes.first end |
permalink #exposes ⇒ Array
Returns the image exposed ports (EXPOSE
).
211 212 213 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 211 def exposes image_config['ExposedPorts'].keys.map { |x| x.delete('/tcp') } end |
permalink #image_config ⇒ Hash
Returns the image configuration.
39 40 41 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 39 def image_config @image.json['Config'] end |
permalink #label ⇒ String
Returns the first label as a string (LABEL
).
180 181 182 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 180 def label labels.first.join('=') end |
permalink #labels ⇒ Hash
Returns the image labels (LABEL
).
164 165 166 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 164 def labels image_config['Labels'] end |
permalink #maintainer ⇒ String
Returns the image maintainer or author (MAINTAINER
).
115 116 117 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 115 def maintainer @image.json['Author'] end |
permalink #onbuild ⇒ String
Returns the first onbuild instruction (ONBUILD
).
408 409 410 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 408 def onbuild onbuilds.first end |
permalink #onbuilds ⇒ Array
Returns the onbuild instructions (ONBUILD
).
392 393 394 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 392 def onbuilds image_config['OnBuild'] end |
permalink #os ⇒ String
Returns the image Operating System.
89 90 91 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 89 def os @image.json['Os'] end |
permalink #size ⇒ Integer
Returns the image size in bytes.
55 56 57 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 55 def size @image.json['VirtualSize'] end |
permalink #stopsignal ⇒ String
Returns the stop signal (STOPSIGNAL
).
429 430 431 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 429 def stopsignal image_config['StopSignal'] end |
permalink #user ⇒ String
Returns the image user (USER
).
345 346 347 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 345 def user image_config['User'] end |
permalink #volume ⇒ String
Returns the first volume (VOLUME
).
324 325 326 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 324 def volume volumes.first end |
permalink #volumes ⇒ Array
Returns the image volumes (VOLUME
).
308 309 310 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 308 def volumes image_config['Volumes'].keys end |
permalink #workdir ⇒ String
Returns the image workdir (WORKDIR
).
371 372 373 |
# File 'lib/dockerspec/builder/config_helpers.rb', line 371 def workdir image_config['WorkingDir'] end |