Created
March 15, 2020 12:13
-
-
Save takehaya/445e3b0120bcb8c7ab6e6f2b487c9dbb 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 -*- | |
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