Last active
October 9, 2015 05:59
-
-
Save lgelfan/b9d20c61317bf07fcaaa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# 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