mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-04 22:32:49 -04:00
Merge pull request #11426 from bat9r/patch-1
Missed comma in configuration file
This commit is contained in:
commit
6beea47d9c
1 changed files with 1 additions and 1 deletions
|
|
@ -199,7 +199,7 @@ $ docker network create my-custom-network --subnet=172.20.0.0/16
|
|||
```ruby
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.define "docker" do |docker|
|
||||
docker.vm.network :private_network, type: "dhcp" name: "my-custom-network"
|
||||
docker.vm.network :private_network, type: "dhcp", name: "my-custom-network"
|
||||
docker.vm.provider "docker" do |d|
|
||||
d.build_dir = "docker_build_dir"
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue