This commit is contained in:
Mitchell Hashimoto 2015-06-23 22:31:24 -07:00
parent 383d50b35d
commit c2dc6c8234

View file

@ -85,7 +85,7 @@ func resourceDockerContainerCreate(d *schema.ResourceData, meta interface{}) err
d.SetId(retContainer.ID)
hostConfig := &dc.HostConfig{
Privileged: d.Get("privileged").(bool),
Privileged: d.Get("privileged").(bool),
PublishAllPorts: d.Get("publish_all_ports").(bool),
}