13 lines
246 B
Go
13 lines
246 B
Go
|
|
package provision
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/docker/machine/libmachine/auth"
|
||
|
|
"github.com/docker/machine/libmachine/engine"
|
||
|
|
)
|
||
|
|
|
||
|
|
type EngineConfigContext struct {
|
||
|
|
DockerPort int
|
||
|
|
AuthOptions auth.AuthOptions
|
||
|
|
EngineOptions engine.EngineOptions
|
||
|
|
}
|