Last active
March 3, 2019 11:28
-
-
Save aita/b1d694612ff6745115fa9153ce8caa7f 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "bento/ubuntu-18.04" | |
| config.vm.network :forwarded_port, guest: 22, host: 2201, id: "ssh", auto_correct: true | |
| config.vm.network "private_network", type: "dhcp" | |
| config.vm.synced_folder "./envoy", "/home/vagrant/envoy", owner: "vagrant", group: "vagrant" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment