mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			509 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			509 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # -*- 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.require_version ">= 1.7.0"
 | |
| 
 | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
 | |
|   config.vm.provider "virtualbox" do |v|
 | |
|     v.memory = 2048
 | |
|     v.cpus = 2
 | |
|   end
 | |
| 
 | |
|   config.vm.box = "boxcutter/ubuntu1410-docker"
 | |
| 
 | |
|   config.vm.network "private_network", ip: "192.168.12.34"
 | |
| 
 | |
|   config.vm.provision "shell", inline: "/vagrant/helpers/install.sh"
 | |
| end |