Skip to content

Instantly share code, notes, and snippets.

@lgelfan
Last active October 9, 2015 05:59
Show Gist options
  • Save lgelfan/b9d20c61317bf07fcaaa to your computer and use it in GitHub Desktop.
Save lgelfan/b9d20c61317bf07fcaaa to your computer and use it in GitHub Desktop.
# minor updates, see Vagrant file after init for default settings and comments:
# vagrant init box-cutter/ubuntu1504-docker; vagrant up --provider virtualbox
Vagrant.configure(2) do |config|
config.vm.box = "box-cutter/ubuntu1504-docker"
config.vm.network "forwarded_port", guest: 80, host: 8888
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment