Created
September 26, 2019 23:22
-
-
Save filipelenfers/3dddefcdccd4803fad37d85f6a89a538 to your computer and use it in GitHub Desktop.
VagrantFile Zepellin/Glue - article - step 1
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 = "ubuntu/bionic64" | |
config.vm.network "forwarded_port", guest: 8080, host: 8080 | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "2048" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment