Class: Kamal::Commands::Builder::Base
Defined Under Namespace
Classes: BuilderError
Constant Summary
collapse
- ENDPOINT_DOCKER_HOST_INSPECT =
"'{{.Endpoints.docker.Host}}'"
Kamal::Commands::Base::DOCKER_HEALTH_STATUS_FORMAT
Instance Attribute Summary
#config
Instance Method Summary
collapse
#container_id_for, #initialize, #make_directory, #make_directory_for, #remove_directory, #run_over_ssh
Instance Method Details
#build_context ⇒ Object
22
23
24
|
# File 'lib/kamal/commands/builder/base.rb', line 22
def build_context
config.builder.context
end
|
#build_options ⇒ Object
18
19
20
|
# File 'lib/kamal/commands/builder/base.rb', line 18
def build_options
[ *build_tags, *build_cache, *build_labels, *build_args, *build_secrets, *build_dockerfile, *build_target, *build_ssh ]
end
|
#clean ⇒ Object
10
11
12
|
# File 'lib/kamal/commands/builder/base.rb', line 10
def clean
docker :image, :rm, "--force", config.absolute_image
end
|
#config_context_hosts ⇒ Object
39
40
41
|
# File 'lib/kamal/commands/builder/base.rb', line 39
def config_context_hosts
[]
end
|
#context_hosts ⇒ Object
35
36
37
|
# File 'lib/kamal/commands/builder/base.rb', line 35
def context_hosts
:true
end
|
#first_mirror ⇒ Object
43
44
45
|
# File 'lib/kamal/commands/builder/base.rb', line 43
def first_mirror
docker(:info, "--format '{{index .RegistryConfig.Mirrors 0}}'")
end
|
#pull ⇒ Object
14
15
16
|
# File 'lib/kamal/commands/builder/base.rb', line 14
def pull
docker :pull, config.absolute_image
end
|
#validate_image ⇒ Object
26
27
28
29
30
31
32
33
|
# File 'lib/kamal/commands/builder/base.rb', line 26
def validate_image
pipe \
docker(:inspect, "-f", "'{{ .Config.Labels.service }}'", config.absolute_image),
any(
[ :grep, "-x", config.service ],
"(echo \"Image #{config.absolute_image} is missing the 'service' label\" && exit 1)"
)
end
|