Class: Kamal::Commands::Builder::Local

Inherits:
Base show all
Defined in:
lib/kamal/commands/builder/local.rb

Constant Summary

Constants inherited from Base

Base::ENDPOINT_DOCKER_HOST_INSPECT

Constants inherited from Kamal::Commands::Base

Kamal::Commands::Base::DOCKER_HEALTH_STATUS_FORMAT

Instance Attribute Summary

Attributes inherited from Kamal::Commands::Base

#config

Instance Method Summary collapse

Methods inherited from Base

#build_context, #build_options, #clean, #first_mirror, #info, #inspect_builder, #pull, #push, #validate_image

Methods inherited from Kamal::Commands::Base

#container_id_for, #initialize, #make_directory, #make_directory_for, #remove_directory, #remove_file, #run_over_ssh

Constructor Details

This class inherits a constructor from Kamal::Commands::Base

Instance Method Details

#createObject



2
3
4
# File 'lib/kamal/commands/builder/local.rb', line 2

def create
  docker :buildx, :create, "--name", builder_name, "--driver=#{driver}" unless docker_driver?
end

#removeObject



6
7
8
# File 'lib/kamal/commands/builder/local.rb', line 6

def remove
  docker :buildx, :rm, builder_name unless docker_driver?
end