Method: Ufo::Docker#push

Defined in:
lib/ufo/docker.rb

#push(full_image_name = nil) ⇒ Object



20
21
22
23
24
# File 'lib/ufo/docker.rb', line 20

def push(full_image_name=nil)
  # full_image_name of nil results in defaulting to the last built image by ufo docker build
  pusher = Docker::Pusher.new(full_image_name, options)
  pusher.push
end