Merge pull request #11426 from bat9r/patch-1

Missed comma in configuration file
This commit is contained in:
Brian Cain 2020-03-03 13:26:50 -08:00 committed by GitHub
commit 6beea47d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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