Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Vagrantfile - github.com/candy-chat/candy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8682f53e246d210ee74c67e3c0d25f4ac9a3e42b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- 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.network :forwarded_port, guest: 80, host: 8080
  config.vm.network :forwarded_port, guest: 5280, host: 5280
  config.vm.network :forwarded_port, guest: 4444, host: 4444
  config.vm.network :private_network, ip: '192.168.88.4'

  config.vm.provision :shell, :path => "devbox/provisioning.sh"

  config.vm.synced_folder ".", "/vagrant", type: "nfs"

  config.vm.provider "virtualbox" do |v|
    v.name = "candy"
    v.customize ["modifyvm", :id, "--memory", 768]
  end
end