Skip to content

Instantly share code, notes, and snippets.

@DenKey
Last active October 21, 2016 09:04
Show Gist options
  • Save DenKey/f0e3c662d5d93d74e71f2efb1bbc6a9f to your computer and use it in GitHub Desktop.
Save DenKey/f0e3c662d5d93d74e71f2efb1bbc6a9f to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
config.vm.box = "fnando/hellobits-trusty64"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
config.vm.network "public_network"
config.vm.network "forwarded_port", guest: 3000, host: 3000
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment