Add the Goals host
This commit is contained in:
parent
09e3c78903
commit
cc6e3c8587
21
ahoskingit/goals/Vagrantfile
vendored
Normal file
21
ahoskingit/goals/Vagrantfile
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# -*- 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 = "geerlingguy/ubuntu1604"
|
||||||
|
config.vm.hostname = "goals"
|
||||||
|
playbook = 'django_goals'
|
||||||
|
client = 'ahoskingit'
|
||||||
|
iplookup = 'goals'
|
||||||
|
|
||||||
|
config.vm.provider :virtualbox do |vb|
|
||||||
|
vb.customize ['modifyvm', :id, '--memory', '1024']
|
||||||
|
end
|
||||||
|
|
||||||
|
eval(IO.read("../../vagrant.mixin.rb"), binding)
|
||||||
|
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user