Method: Ufo::CLI::Docker#push

Defined in:
lib/ufo/cli/docker.rb

#push(docker_image = nil) ⇒ Object



22
23
24
25
26
# File 'lib/ufo/cli/docker.rb', line 22

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