github.com/codingfuture/orig-energi3@v0.8.4/Vagrantfile (about)

     1  
     2  Vagrant.configure("2") do |config|
     3      config.vm.define 'builder' do |node|
     4          node.vm.provider "virtualbox" do |v|
     5              v.memory = 4096
     6          end
     7          node.vm.box = "bento/ubuntu-18.04"
     8  
     9          node.vm.provision "shell", inline: %Q[
    10              apt-get update;
    11              apt-get install -y python3-pip unzip;
    12              pip3 install -U futoin-cid;
    13              cid tool install docker;
    14              sudo adduser vagrant docker;
    15          ]
    16      end
    17  end