Class: Mrsk::Commands::Builder::Native
- Inherits:
-
Base
show all
- Defined in:
- lib/mrsk/commands/builder/native.rb
Direct Known Subclasses
Remote
Defined Under Namespace
Classes: Remote
Instance Attribute Summary
#config
Instance Method Summary
collapse
Methods inherited from Base
#build_args, #build_secrets, #pull
#initialize, #run_over_ssh
Instance Method Details
#create ⇒ Object
4
5
6
|
# File 'lib/mrsk/commands/builder/native.rb', line 4
def create
end
|
#info ⇒ Object
18
19
20
|
# File 'lib/mrsk/commands/builder/native.rb', line 18
def info
end
|
#push ⇒ Object
12
13
14
15
16
|
# File 'lib/mrsk/commands/builder/native.rb', line 12
def push
combine \
docker(:build, "-t", *build_args, *build_secrets, config.absolute_image, "."),
docker(:push, config.absolute_image)
end
|
#remove ⇒ Object
8
9
10
|
# File 'lib/mrsk/commands/builder/native.rb', line 8
def remove
end
|