Skip to content

Instantly share code, notes, and snippets.

@malthejorgensen
Created November 9, 2015 07:35
Show Gist options
  • Save malthejorgensen/0bad9a8800301fc10852 to your computer and use it in GitHub Desktop.
Save malthejorgensen/0bad9a8800301fc10852 to your computer and use it in GitHub Desktop.
Vagrantfile for Week 10 in "Computational Tools for Big Data"
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "malthejorgensen/caffe-deeplearning"
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
config.vm.network "forwarded_port", guest: 8003, host: 8003
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment