37 lines
897 B
Go
37 lines
897 B
Go
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/hashicorp/packer/packer"
|
|
"github.com/mitchellh/multistep"
|
|
)
|
|
|
|
// StepCommit commits the container to a image.
|
|
type StepCommit struct {
|
|
imageId string
|
|
}
|
|
|
|
func (s *StepCommit) Run(state multistep.StateBag) multistep.StepAction {
|
|
driver := state.Get("driver").(Driver)
|
|
containerId := state.Get("container_id").(string)
|
|
config := state.Get("config").(*Config)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say("Committing the container")
|
|
imageId, err := driver.Commit(containerId, config.Author, config.Changes, config.Message)
|
|
if err != nil {
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// Save the container ID
|
|
s.imageId = imageId
|
|
state.Put("image_id", s.imageId)
|
|
ui.Message(fmt.Sprintf("Image ID: %s", s.imageId))
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepCommit) Cleanup(state multistep.StateBag) {}
|