You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
509 B
Markdown

# Vagrant
* virtualize CLI. Required VM provider such as HyperV, VirtualBox, Vmware
* Box at [vagrant app](https://app.vagrantup.com/boxes)
* CLI (run as admin)
```shell
// init folder for vm setup
$ vagrant init bento/ubuntu-19.10
// spin up the vm
$ vagrant up
// login to vm
$ vagrant ssh
// shoutdown the vm
$ vagrant halt
```
* configure boxes download location. Default `C:/users/user/.vagrant.d`
* Set Environment variable to customize `VAGRANT_HOME=E:/.vagrant.d`