7,540
edits
Changes
Docker
,→Create machines
Most simple usage:
<pre>
docker-machine create -d <hybervisor driver name> --<driver options> <machine name>
</pre>
* -d: hypervisor driver. Default value: "virtalbox". For KVM use: "kvm".
* --kvm-network: The name of the kvm virtual (public) network that we would like to use. If this is not set, the new machine will be connected to the '''"default"''' KVM virtual network.
{{note|Even with the "--kvn-network" parameter provided, three new interfaces are created for every new VM.* one for the virtual network, described with the --kvm-network parameter* docker-machines Docker will always create a second, isolated virtual network (bridge), called "'''docker-machines'''", that all the new VM is also VMs will be connected toregardless of the value of the '''--kvm-network''' paramter that controls only the name of the "public" network. It seems the the name of the isolated virtual network is hardcoded, and can't be changed. }}
<pre>