forked from inex/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
33 lines (24 loc) · 943 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
27
28
29
30
31
32
33
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "forwarded_port", guest: 80, host: 8088
config.vm.synced_folder ".", "/vagrant/", id: "vagrant-root0",
owner: "ubuntu"
config.vm.synced_folder "./storage", "/vagrant/storage", id: "vagrant-root1",
owner: "ubuntu",
group: "www-data",
mount_options: ["dmode=775,fmode=664"]
config.vm.synced_folder "./database/Proxies", "/vagrant/database/Proxies", id: "vagrant-root3",
owner: "ubuntu",
group: "www-data",
mount_options: ["dmode=775,fmode=664"]
config.vm.synced_folder "./bootstrap/cache", "/vagrant/bootstrap/cache", id: "vagrant-root4",
owner: "ubuntu",
group: "www-data",
mount_options: ["dmode=775,fmode=664"]
config.vm.provider "virtualbox" do |vb|
vb.memory = "1536"
end
config.vm.provision :shell, path: "bootstrap.sh"
end