Update step_connect_docker.go
This commit is contained in:
parent
b2811a8252
commit
bf0c326cd5
|
@ -7,7 +7,7 @@ import (
|
||||||
type StepConnectDocker struct{}
|
type StepConnectDocker struct{}
|
||||||
|
|
||||||
func (s *StepConnectDocker) Run(state multistep.StateBag) multistep.StepAction {
|
func (s *StepConnectDocker) Run(state multistep.StateBag) multistep.StepAction {
|
||||||
config := state.Get("config").(Config)
|
config := state.Get("config").(*Config)
|
||||||
containerId := state.Get("container_id").(string)
|
containerId := state.Get("container_id").(string)
|
||||||
driver := state.Get("driver").(Driver)
|
driver := state.Get("driver").(Driver)
|
||||||
tempDir := state.Get("temp_dir").(string)
|
tempDir := state.Get("temp_dir").(string)
|
||||||
|
|
Loading…
Reference in New Issue