11 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- mode: ruby -*-
 | 
						|
# vi: set ft=ruby :
 | 
						|
 | 
						|
Vagrant.configure("2") do |config|
 | 
						|
  # The most common configuration options are documented and commented below.
 | 
						|
  # For a complete reference, please see the online documentation at
 | 
						|
  # https://docs.vagrantup.com.
 | 
						|
 | 
						|
  config.vm.box = "debian/bullseye64"
 | 
						|
  config.vm.network "forwarded_port", guest: 50012, host: 50012, host_ip: "127.0.0.1"
 | 
						|
end
 |