providers/docker: properly copy create_args in config [GH-4526]
This commit is contained in:
parent
18c76f0a86
commit
7f432422e1
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
|
- providers/docker: Create args works. [GH-4526]
|
||||||
- providers/virtualbox: Show a human-friendly error if VirtualBox didn't
|
- providers/virtualbox: Show a human-friendly error if VirtualBox didn't
|
||||||
clean up an existing VM. [GH-4681]
|
clean up an existing VM. [GH-4681]
|
||||||
- provisioners/docker: Search for docker binary in multiple places. [GH-4580]
|
- provisioners/docker: Search for docker binary in multiple places. [GH-4580]
|
||||||
|
|
|
@ -87,7 +87,7 @@ module VagrantPlugins
|
||||||
@build_args = []
|
@build_args = []
|
||||||
@build_dir = UNSET_VALUE
|
@build_dir = UNSET_VALUE
|
||||||
@cmd = UNSET_VALUE
|
@cmd = UNSET_VALUE
|
||||||
@create_args = []
|
@create_args = UNSET_VALUE
|
||||||
@env = {}
|
@env = {}
|
||||||
@expose = []
|
@expose = []
|
||||||
@force_host_vm = UNSET_VALUE
|
@force_host_vm = UNSET_VALUE
|
||||||
|
|
Loading…
Reference in New Issue