yogendra/trusty32 - Announcing my first vagrant box
I have finally released my first vagrant box. Its been a long time coming, but it’s here now. How to get it?
Create a new vagrant project with:
vagrant init yogendra/trusty32
Or
- Create/update your Vagrantfile as
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "yogendra/trusty32"
end
- Run this
vagrant up --provider vmware_fusion
That’s it.
If you are new to Vagrant, read this tutorialto get started