20 lines
314 B
Plaintext
20 lines
314 B
Plaintext
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
Vagrant.configure("2") do |config|
|
||
|
|
||
|
config.vm.box = "ubuntu/focal64"
|
||
|
|
||
|
# Resource configuration
|
||
|
config.vm.provider "virtualbox" do |v|
|
||
|
v.memory=4096
|
||
|
v.cpus= 2
|
||
|
end
|
||
|
|
||
|
# Networking
|
||
|
# config.vm.define "vm" do |vm|
|
||
|
# vm.vm.hostname="test-node"
|
||
|
# end
|
||
|
|
||
|
end
|