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:
Or
- Create/update your Vagrantfile as
1# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5VAGRANTFILE_API_VERSION = "2"
6
7Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8 config.vm.box = "yogendra/trusty32"
9end
ruby
- Run this
That's it.
If you are new to Vagrant, read this tutorialto get started