forked from strets123/chembiohub_ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
executable file
·26 lines (18 loc) · 861 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "https://chembiohub.ox.ac.uk/25102016package.box"
config.vm.network "forwarded_port", guest: 8000, host: 8000, auto_correct: true
config.vm.network "forwarded_port", guest: 9000, host: 9000, auto_correct: true
config.vm.network "forwarded_port", guest: 35729, host: 35729, auto_correct: true
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 2
#v.customize(['storagectl', :id, '--name', 'SATAController', '--hostiocache', 'off'])
end
config.vm.synced_folder ".", "/home/vagrant/syw"
#config.vm.provision :shell, :path => "" , :privileged => false
config.ssh.password = "vagrant"
end