Vagrant: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 43: Line 43:


| valign="top" |
| valign="top" |
* [https://www.vagrantup.com/intro/vs/terraform Vagrant vs. Terraform]
* [https://www.vagrantup.com/intro/vs/docker.html Vagrant vs. Docker]
* [https://www.vagrantup.com/intro/vs/docker.html Vagrant vs. Docker]
* [https://www.vagrantup.com/downloads Download Vagrant]
* [https://www.vagrantup.com/downloads Download Vagrant]

Revision as of 06:13, 12 June 2022

Info

brew cask info virtualbox
brew cask info vagrant
brew cask info vagrant-manager

Install

brew cask install virtualbox
brew cask install vagrant
brew cask install vagrant-manager

Syntax

vagrant box add {title} {url}
vagrant init {title}

Example

vagrant box add hashicorp/precise64 https://vagrantcloud.com/hashicorp/boxes/precise64/versions/1.1.0/providers/virtualbox.box
vagrant init hashicorp/precise64
vagrant up
vagrant ssh
vagrant halt

References