Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creating a new virtual machine



DockerFile

Docker File
> mkdir vm
> cd vm
> vagrant init
 
 
We need to edit the Vagrantfile and set:
    config.vm.box = "ubuntu/trusty64"
 
 
> vagrant up


That's it!

Now just vagrant ssh and you all set.

...