Created
October 10, 2012 07:51
-
-
Save jaytaph/3863869 to your computer and use it in GitHub Desktop.
my first Vagrantfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Downloads the lucid32 box, clones a new virtual machine and starts it. | |
Start the machine by using "vagrant up". | |
Log into the machine by using "vagrant ssh". | |
Shutdown the machine by "vagrant destroy". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant::Config.run do |config| | |
config.vm.box = 'lucid32' | |
config.vm.box_url = 'http://files.vagrantup.com/lucid32.box' | |
config.vm.boot_mode = :gui | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Downloads the lucid32 box, clones a new virtual machine and starts it.