2015-06-14 22:09:38 -07:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
2018-01-19 16:18:44 -08:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2015-06-14 22:09:38 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func commHost(state multistep.StateBag) (string, error) {
|
|
|
|
containerId := state.Get("container_id").(string)
|
|
|
|
driver := state.Get("driver").(Driver)
|
|
|
|
return driver.IPAddress(containerId)
|
|
|
|
}
|