2015-04-17 15:15:49 -07:00
|
|
|
package provision
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/docker/machine/libmachine/auth"
|
|
|
|
|
"github.com/docker/machine/libmachine/engine"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type EngineConfigContext struct {
|
2015-05-05 17:21:20 -07:00
|
|
|
DockerPort int
|
2015-11-04 17:28:31 -08:00
|
|
|
AuthOptions auth.Options
|
|
|
|
|
EngineOptions engine.Options
|
2015-05-05 17:21:20 -07:00
|
|
|
DockerOptionsDir string
|
2015-04-17 15:15:49 -07:00
|
|
|
}
|