orchestration.vagrants/ahoskingit/nextcloud/Vagrantfile

21 lines
490 B
Ruby
Raw Normal View History

2017-03-05 19:40:56 +00:00
# -*- 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 = "ubuntu/trusty64"
config.vm.hostname = "nextcloud"
playbook = 'nextcloud'
client = 'ahoskingit'
config.vm.provider :virtualbox do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
end
eval(IO.read("../../vagrant.mixin.rb"), binding)
end