Run Ubuntu vm from Vagrant

This commit is contained in:
Aleskey Zalesov 2018-03-05 18:14:02 +03:00
parent 13f2407d18
commit ae670b8a73
1 changed files with 13 additions and 0 deletions

13
Vagrantfile vendored Normal file
View File

@ -0,0 +1,13 @@
ENV["LC_ALL"] = "en_US.UTF-8"
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.hostname = "validator"
config.vm.network "private_network", ip: "192.168.57.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end