Class: Mrsk::Commands::Builder::Native::Cached

Inherits:
Mrsk::Commands::Builder::Native show all
Defined in:
lib/mrsk/commands/builder/native/cached.rb

Constant Summary

Constants inherited from Mrsk::Commands::Base

Mrsk::Commands::Base::DOCKER_HEALTH_LOG_FORMAT, Mrsk::Commands::Base::DOCKER_HEALTH_STATUS_FORMAT

Instance Attribute Summary

Attributes inherited from Mrsk::Commands::Base

#config

Instance Method Summary collapse

Methods inherited from Mrsk::Commands::Builder::Native

#info

Methods inherited from Base

#build_context, #build_options, #clean, #pull

Methods inherited from Mrsk::Commands::Base

#container_id_for, #initialize, #run_over_ssh

Constructor Details

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

Instance Method Details

#createObject



2
3
4
# File 'lib/mrsk/commands/builder/native/cached.rb', line 2

def create
  docker :buildx, :create, "--use", "--driver=docker-container"
end

#pushObject



10
11
12
13
14
15
# File 'lib/mrsk/commands/builder/native/cached.rb', line 10

def push
  docker :buildx, :build,
    "--push",
    *build_options,
    build_context
end

#removeObject



6
7
8
# File 'lib/mrsk/commands/builder/native/cached.rb', line 6

def remove
  docker :buildx, :rm, builder_name
end