Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for VAGRANT_MEMORY (0.05 seconds)

  1. Vagrantfile

      autostart: false
    }.freeze
    
    Vagrant.configure(2) do |config|
    
      config.vm.provider 'virtualbox' do |vbox|
        # Give the box more memory and cpu because our tests are beasts!
        vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
        vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
    
        # see https://github.com/hashicorp/vagrant/issues/9524
        vbox.customize ["modifyvm", :id, "--audio", "none"]
      end
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top