Skip to content

Instantly share code, notes, and snippets.

@joefutrelle
Created April 4, 2017 16:46
Show Gist options
  • Save joefutrelle/edd0beafb877efd6624620a1d1e38c96 to your computer and use it in GitHub Desktop.
Save joefutrelle/edd0beafb877efd6624620a1d1e38c96 to your computer and use it in GitHub Desktop.
IFCB dashboard box install
Vagrant.configure("2") do |config|
config.vm.box = "joefutrelle/ifcb-dashboard"
config.vm.provider "virtualbox" do |vb|
vb.memory="2048"
end
config.vm.network :forwarded_port, host: 8888, guest: 8888
config.vm.provision :shell, inline: <<-SHELL
SHELL
config.vm.provision :shell, run: "always", inline: <<-SHELL
curl -s http://localhost:8888/ > /dev/null
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment