packer-cn/builder/docker/config.go

15 lines
217 B
Go
Raw Normal View History

2013-11-08 19:55:02 -05:00
package docker
import (
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/packer"
)
type Config struct {
common.PackerConfig `mapstructure:",squash"`
2013-11-09 01:00:57 -05:00
Image string
2013-11-08 19:55:02 -05:00
tpl *packer.ConfigTemplate
}