mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Merge pull request #289 from mikexstudios/vagrantfix
Set Ubuntu Raring cloud box `--ostype=Ubuntu_64` to fix virtualbox boot
This commit is contained in:
3
Vagrantfile
vendored
3
Vagrantfile
vendored
@@ -22,6 +22,9 @@ Vagrant::configure("2") do |config|
|
||||
|
||||
config.vm.provider :virtualbox do |vb|
|
||||
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
|
||||
# Ubuntu's Raring 64-bit cloud image is set to a 32-bit Ubuntu OS type by
|
||||
# default in Virtualbox and thus will not boot. Manually override that.
|
||||
vb.customize ["modifyvm", :id, "--ostype", "Ubuntu_64"]
|
||||
end
|
||||
|
||||
config.vm.provision :shell, :inline => "apt-get -y install git && cd /root/dokku && #{make_cmd}"
|
||||
|
||||
Reference in New Issue
Block a user