mirror of
https://github.com/openvk/openvk
synced 2024-11-13 10:39:24 +03:00
Add vagrant config
This commit is contained in:
parent
3b7a08c198
commit
2758ef37c1
1 changed files with 16 additions and 0 deletions
16
Vagrantfile
vendored
Normal file
16
Vagrantfile
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "freebsd/FreeBSD-12.1-STABLE"
|
||||
|
||||
config.vm.network "forwarded_port", guest: 80, host: 4000
|
||||
|
||||
config.vm.synced_folder ".", "/.ovk_release"
|
||||
|
||||
config.vm.provider "virtualbox" do |vb|
|
||||
vb.gui = true
|
||||
vb.memory = "1024"
|
||||
end
|
||||
|
||||
config.vm.provision "shell", inline: "/bin/tcsh /.ovk_release/install/automated/freebsd-12/install"
|
||||
end
|
Loading…
Reference in a new issue