Last active
December 15, 2015 08:39
-
-
Save rogeriopradoj/5232499 to your computer and use it in GitHub Desktop.
Vagrantfile, versão 32-bit para o projeto https://github.com/ThamaraHessel/DojoOnline/tree/vagrant, serve para quem tiver problemas em subir a máquina virtual com a `precise64`, e não conseguir habilitar na BIOS o VT-X, conforme discussão nessa lista: https://groups.google.com/forum/?fromgroups=#!topic/vagrant-up/4rOCCWfILYc
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| # define box base | |
| config.vm.box = "precise32" | |
| # url para download automático da box se primeira utilização | |
| config.vm.box_url = "http://files.vagrantup.com/precise32.box" | |
| # define modo interface de rede e ip fixo | |
| config.vm.network :hostonly, "192.168.33.10" | |
| # provisiona a máquina | |
| config.vm.provision :shell do |shell| | |
| shell.path = "vagrant.sh" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment