class Packer::PostProcessor::DockerTag
Public Class Methods
new()
click to toggle source
Calls superclass method
Packer::PostProcessor::new
# File lib/packer/postprocessors/docker.rb, line 63 def initialize super self.data['type'] = DOCKER_TAG self.add_required('repository') end
Public Instance Methods
repository(repo)
click to toggle source
# File lib/packer/postprocessors/docker.rb, line 69 def repository(repo) self.__add_string('repository', repo) end
tag(tag)
click to toggle source
# File lib/packer/postprocessors/docker.rb, line 73 def tag(tag) self.__add_string('tag', tag) end