Last active
August 26, 2015 08:04
-
-
Save w0ng/b89259c27abb508a6d03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# ============================================================================= | |
# Set configuration variables here | |
project_name = File.basename(Dir.pwd) | |
server_ip = "192.168.22.10" | |
server_name = "dev.local.192.168.22.10.xip.io" | |
server_alias = "dev.local.*.xip.io" | |
doc_root = "/vagrant" | |
provision_extras = true | |
# ============================================================================= | |
Vagrant.configure(2) do |config| | |
config.vm.box = "w0ng/laravel-debian-8.1.0-amd64" | |
config.vm.network "private_network", ip: server_ip | |
config.vm.network "forwarded_port", guest: 80, host: 8000 | |
# Mount with NFS for speed (Linux/OSX hosts) | |
#config.vm.synced_folder '.', doc_root, :nfs => true, :mount_options => ['actimeo=2'] | |
# Mount with SMB for speed (Windows hosts) | |
#config.vm.synced_folder '.', doc_root, type: 'smb' | |
# Name the vagrant VM the same as the base directory name. | |
config.vm.define project_name do |appname| | |
end | |
config.vm.provider "virtualbox" do |vb| | |
# Name the VirtualBox VM the same as the base directory name. | |
vb.name = project_name | |
# Based on: https://stefanwrobel.com/how-to-make-vagrant-performance-not-suck | |
# Give VM 1/4 system memory & access to all cpu cores on the host | |
host = RbConfig::CONFIG['host_os'] | |
# OSX. | |
if host =~ /darwin/ | |
cpus = `sysctl -n hw.ncpu`.to_i | |
mem = `sysctl -n hw.memsize`.to_i / 1024 / 1024 / 4 | |
# Linux. | |
elsif host =~ /linux/ | |
cpus = `nproc`.to_i | |
mem = `grep 'MemTotal' /proc/meminfo | sed -e 's/MemTotal://' -e 's/ kB//'`.to_i / 1024 / 4 | |
# Windows. | |
else | |
cpus = 2 | |
mem = 1024 | |
end | |
vb.customize ["modifyvm", :id, "--memory", mem] | |
vb.customize ["modifyvm", :id, "--cpus", cpus] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment