Skip to content

Instantly share code, notes, and snippets.

@srgrn
Created March 5, 2017 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srgrn/562dc34178710fe795138f57712d482b to your computer and use it in GitHub Desktop.
Save srgrn/562dc34178710fe795138f57712d482b to your computer and use it in GitHub Desktop.
Simple vagrant file for devops linux course
Vagrant.configure("2") do |config|
config.vm.define "arch" do |arch|
arch.vm.box = "ogarcia/archlinux-x64"
end
config.vm.define "ubuntu" do |ubuntu|
ubuntu.vm.box = "ubuntu/xenial64"
end
config.vm.network "private_network", type: "dhcp"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment