Last active
September 20, 2017 12:03
-
-
Save felippepuhle/f4356817e2aa70848aa13ffd04d5064f 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
| Vagrant.configure("2") do |config| | |
| config.vm.box = "hashicorp/precise32" | |
| config.vm.define :web do |web_config| | |
| web_config.vm.network "private_network", ip: "192.168.50.10" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment