Last active
March 7, 2018 17:36
-
-
Save mnyrop/3a7321c3dcc3bd562cb74d636aeae3bc to your computer and use it in GitHub Desktop.
wax vm config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# to use forwarded_port, serve jekyll with --host 0.0.0.0 | |
Vagrant.configure("2") do |config| | |
config.vm.box = "marii/wax" | |
config.vm.box_version = "0.0.1" | |
config.vm.network "forwarded_port", guest: 4000, host: 4000 | |
config.vm.provider "virtualbox" do |v| | |
v.memory = 4096 | |
v.cpus = 4 | |
v.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment