Skip to content

Instantly share code, notes, and snippets.

@takehaya
Created March 15, 2020 12:13
Show Gist options
  • Save takehaya/445e3b0120bcb8c7ab6e6f2b487c9dbb to your computer and use it in GitHub Desktop.
Save takehaya/445e3b0120bcb8c7ab6e6f2b487c9dbb to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
Vagrant.configure("2") do |config|
# config.vm.box = "bento/ubuntu-19.10"
config.vm.box = "bento/ubuntu-18.04"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
vb.cpus = 4
end
config.vm.synced_folder ".", "/home/vagrant/workspace"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment