Skip to content

Instantly share code, notes, and snippets.

@filipelenfers
Created September 26, 2019 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipelenfers/3dddefcdccd4803fad37d85f6a89a538 to your computer and use it in GitHub Desktop.
Save filipelenfers/3dddefcdccd4803fad37d85f6a89a538 to your computer and use it in GitHub Desktop.
VagrantFile Zepellin/Glue - article - step 1
# -*- 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