Skip to content

Instantly share code, notes, and snippets.

@kofj
Last active August 29, 2015 14:10
Show Gist options
  • Save kofj/d745758b100cbba66055 to your computer and use it in GitHub Desktop.
Save kofj/d745758b100cbba66055 to your computer and use it in GitHub Desktop.
Use this vagrantfile startup a VM you can view it with a hostonly IP Address
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "docker"
config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder "./", "/vagrant"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment