Created
February 16, 2018 08:05
-
-
Save t-book/d3461ac57e35d52b146e1217cc4d9cdf to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Vagrant
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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