-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVagrantfile
More file actions
23 lines (18 loc) · 809 Bytes
/
Vagrantfile
File metadata and controls
23 lines (18 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty32"
config.vm.network :forwarded_port, host: 4000, guest: 4000
config.vm.provision :shell,
:inline => "sudo apt-get -y install build-essential ruby2.0 ruby2.0-dev nodejs && sudo /usr/bin/gem2.0 install jekyll rdiscount --no-ri --no-rdoc"
if Vagrant.has_plugin?("vagrant-vbguest")
# https://github.com/dotless-de/vagrant-vbguest
# set auto_update to false, if you do NOT want to check the correct
# additions version when booting this machine
config.vbguest.auto_update = false
# do NOT download the iso file from a webserver
config.vbguest.no_remote = true
end
config.vm.provider "virtualbox" do |v|
v.name = "openpythia-jekyll"
# v.customize ["modifyvm", :id, "--memory", "1024"]
end
end