packer-cn/builder/docker/step_run.go

64 lines
1.6 KiB
Go
Raw Normal View History

2013-11-09 01:17:46 -05:00
package docker
import (
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
)
type StepRun struct {
containerId string
}
func (s *StepRun) Run(state multistep.StateBag) multistep.StepAction {
config := state.Get("config").(*Config)
2013-11-09 16:03:01 -05:00
driver := state.Get("driver").(Driver)
tempDir := state.Get("temp_dir").(string)
2013-11-09 01:17:46 -05:00
ui := state.Get("ui").(packer.Ui)
2013-11-09 16:03:01 -05:00
runConfig := ContainerConfig{
Image: config.Image,
RunCommand: config.RunCommand,
2014-09-05 18:48:42 -04:00
Volumes: make(map[string]string),
Privileged: config.Privileged,
}
2014-09-05 18:48:42 -04:00
for host, container := range config.Volumes {
runConfig.Volumes[host] = container
}
runConfig.Volumes[tempDir] = "/packer-files"
ui.Say("Starting docker container...")
2013-11-09 16:03:01 -05:00
containerId, err := driver.StartContainer(&runConfig)
if err != nil {
2013-11-09 01:17:46 -05:00
err := fmt.Errorf("Error running container: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
2013-11-09 16:03:01 -05:00
// Save the container ID
s.containerId = containerId
state.Put("container_id", s.containerId)
2013-11-09 16:03:01 -05:00
ui.Message(fmt.Sprintf("Container ID: %s", s.containerId))
2013-11-09 01:17:46 -05:00
return multistep.ActionContinue
}
func (s *StepRun) Cleanup(state multistep.StateBag) {
if s.containerId == "" {
return
}
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packer.Ui)
// Kill the container. We don't handle errors because errors usually
// just mean that the container doesn't exist anymore, which isn't a
// big deal.
ui.Say(fmt.Sprintf("Killing the container: %s", s.containerId))
2013-11-09 16:03:01 -05:00
driver.StopContainer(s.containerId)
// Reset the container ID so that we're idempotent
s.containerId = ""
2013-11-09 01:17:46 -05:00
}