Skip to content

Commit

Permalink
Update Ubuntu version to 16.04 for db
Browse files Browse the repository at this point in the history
  • Loading branch information
vbanthia committed Nov 24, 2016
1 parent 872dd8b commit 8457e7f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions db/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ Vagrant.configure(2) do |config|
# always use Vagrants insecure key
config.ssh.insert_key = false

# Ubuntu 14.04, 64 bit
config.vm.box = 'ubuntu/trusty64'
config.vm.box_version = '~> 14.04'
# Ubuntu 16.04, 64 bit
config.vm.box = "bento/ubuntu-16.04"

# Set memory to 512
# Set memory to 1024
# Allow I/O APIC
config.vm.provider :virtualbox do |v|
v.name = 'rethinkdb_ubuntu'
v.customize ['modifyvm', :id, '--memory', '512', '--ioapic', 'on']
v.customize ['modifyvm', :id, '--memory', '1024', '--ioapic', 'on']
end

# Static IP
Expand Down

0 comments on commit 8457e7f

Please sign in to comment.