Class: Minke::Config::DockerSettings

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

Overview

DockerSettings encapsulate the configuration used when running builds using docker.

Instance Attribute Summary collapse

Instance Attribute Details

#application_compose_fileObject

Docker compose file to use when running and executing cucumber tests.

Required


197
198
199
# File 'lib/minke/config/config.rb', line 197

def application_compose_file
  @application_compose_file
end

#application_docker_fileObject

Dockerfile to use when creating the final docker image.

Required


191
192
193
# File 'lib/minke/config/config.rb', line 191

def application_docker_file
  @application_docker_file
end

#build_docker_fileObject

Specific docker settings to allow an override of the defaults provided by the template, you may want to use this if you require a specific piece of software to be installed on the build container.

Optional


185
186
187
# File 'lib/minke/config/config.rb', line 185

def build_docker_file
  @build_docker_file
end

#build_imageObject

Docker Image to use when building the application source code.

Optional


178
179
180
# File 'lib/minke/config/config.rb', line 178

def build_image
  @build_image
end