Skip to content

Instantly share code, notes, and snippets.

@kakakikikeke
Created February 3, 2022 23:01
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 kakakikikeke/9c757fc485cca4e163bf21d9451880a0 to your computer and use it in GitHub Desktop.
Save kakakikikeke/9c757fc485cca4e163bf21d9451880a0 to your computer and use it in GitHub Desktop.
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "private_network", ip: "192.168.100.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = 4096
vb.cpus = 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment