Skip to content

Instantly share code, notes, and snippets.

@t-book
Created February 16, 2018 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t-book/d3461ac57e35d52b146e1217cc4d9cdf to your computer and use it in GitHub Desktop.
Save t-book/d3461ac57e35d52b146e1217cc4d9cdf to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.network "private_network", ip: "192.168.33.11"
config.vm.provider "virtualbox" do |vb|
vb.memory = "6024"
end
config.vm.network "forwarded_port", guest: 80, host: 8001
config.vm.network "forwarded_port", guest: 8000, host: 8000
config.vm.network "forwarded_port", guest: 8080, host: 8080
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment