mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 23:41:41 -04:00
15 lines
217 B
Go
15 lines
217 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/common"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type Config struct {
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
Image string
|
|
|
|
tpl *packer.ConfigTemplate
|
|
}
|