Skip to content

Instantly share code, notes, and snippets.

@mgandin
Last active August 29, 2015 14:02
Show Gist options
  • Save mgandin/a1a0466e93e717c631d9 to your computer and use it in GitHub Desktop.
Save mgandin/a1a0466e93e717c631d9 to your computer and use it in GitHub Desktop.
Hello Vagrant world
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define :ubuntu do |ubuntu|
ubuntu.vm.box = "ubuntu"
ubuntu.vm.network "private_network", ip: "10.11.12.13"
#ubuntu.vm.network :forwarded_port, guest:80, host:8080, autocorrect:true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment