packer-cn/builder/docker/config.go

88 lines
1.6 KiB
Go
Raw Normal View History

2013-11-08 19:55:02 -05:00
package docker
import (
2013-11-09 14:47:32 -05:00
"fmt"
2013-11-08 19:55:02 -05:00
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/packer"
)
type Config struct {
common.PackerConfig `mapstructure:",squash"`
2013-11-09 12:48:36 -05:00
ExportPath string `mapstructure:"export_path"`
Image string
Pull bool
RunCommand []string `mapstructure:"run_command"`
2013-11-09 01:00:57 -05:00
2013-11-08 19:55:02 -05:00
tpl *packer.ConfigTemplate
}
2013-11-09 14:47:32 -05:00
2013-11-09 20:07:14 -05:00
func NewConfig(raws ...interface{}) (*Config, []string, error) {
c := new(Config)
md, err := common.DecodeConfig(c, raws...)
if err != nil {
return nil, nil, err
}
c.tpl, err = packer.NewConfigTemplate()
if err != nil {
return nil, nil, err
}
// Defaults
if len(c.RunCommand) == 0 {
c.RunCommand = []string{
"run",
"-d", "-i", "-t",
"-v", "{{.Volumes}}",
"{{.Image}}",
"/bin/bash",
}
}
// Default Pull if it wasn't set
hasPull := false
for _, k := range md.Keys {
if k == "Pull" {
hasPull = true
break
}
}
if !hasPull {
c.Pull = true
}
2013-11-09 20:07:14 -05:00
errs := common.CheckUnusedConfig(md)
2013-11-09 14:47:32 -05:00
templates := map[string]*string{
"export_path": &c.ExportPath,
"image": &c.Image,
}
for n, ptr := range templates {
var err error
*ptr, err = c.tpl.Process(*ptr, nil)
if err != nil {
2013-11-09 20:07:14 -05:00
errs = packer.MultiErrorAppend(
2013-11-09 14:47:32 -05:00
errs, fmt.Errorf("Error processing %s: %s", n, err))
}
}
if c.ExportPath == "" {
2013-11-09 20:07:14 -05:00
errs = packer.MultiErrorAppend(errs,
fmt.Errorf("export_path must be specified"))
2013-11-09 14:47:32 -05:00
}
if c.Image == "" {
2013-11-09 20:07:14 -05:00
errs = packer.MultiErrorAppend(errs,
fmt.Errorf("image must be specified"))
}
if errs != nil && len(errs.Errors) > 0 {
return nil, nil, errs
2013-11-09 14:47:32 -05:00
}
2013-11-09 20:07:14 -05:00
return c, nil, nil
2013-11-09 14:47:32 -05:00
}