2010-02-10 07:10:16 +00:00
# Vagrant
2010-01-22 03:13:53 +00:00
2015-11-16 17:15:58 +00:00
* Website: [https://www.vagrantup.com/ ](https://www.vagrantup.com/ )
2017-09-13 17:18:17 +00:00
* Source: [https://github.com/hashicorp/vagrant ](https://github.com/hashicorp/vagrant )
2016-11-14 22:12:04 +00:00
* [![Gitter chat ](https://badges.gitter.im/mitchellh/vagrant.png )](https://gitter.im/mitchellh/vagrant)
2016-01-25 18:14:54 +00:00
* Mailing list: [Google Groups ](https://groups.google.com/group/vagrant-up )
2018-04-03 21:29:07 +00:00
* IRC: #vagrant on freenode.org
2010-03-07 20:05:53 +00:00
2013-01-14 01:44:08 +00:00
Vagrant is a tool for building and distributing development environments.
2010-03-07 20:05:53 +00:00
2014-04-30 16:58:05 +00:00
Development environments managed by Vagrant can run on local virtualized
platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack,
or in containers such as with Docker or raw LXC.
2013-01-14 01:44:08 +00:00
Vagrant provides the framework and configuration format to create and
manage complete portable development environments. These development
environments can live on your computer or in the cloud, and are portable
between Windows, Mac OS X, and Linux.
2010-03-07 20:05:53 +00:00
## Quick Start
2019-06-05 04:27:14 +00:00
Package dependencies: Vagrant requires `bsdtar` to be available on your system PATH to run successfully.
2014-04-30 16:58:05 +00:00
For the quick-start, we'll bring up a development machine on
2015-11-16 17:15:58 +00:00
[VirtualBox ](https://www.virtualbox.org/ ) because it is free and works
2014-04-30 16:58:05 +00:00
on all major platforms. Vagrant can, however, work with almost any
2017-04-06 00:55:25 +00:00
system such as [OpenStack ](https://www.openstack.org/ ), [VMware ](https://www.vmware.com/ ), [Docker ](https://docs.docker.com/ ), etc.
2014-04-30 16:58:05 +00:00
First, make sure your development machine has
2015-11-16 17:15:58 +00:00
[VirtualBox ](https://www.virtualbox.org/ )
2014-04-30 16:58:05 +00:00
installed. After this,
2016-01-25 18:14:54 +00:00
[download and install the appropriate Vagrant package for your OS ](https://www.vagrantup.com/downloads.html ).
2010-03-07 20:05:53 +00:00
To build your first virtual environment:
2019-08-14 17:48:33 +00:00
vagrant init hashicorp/bionic64
2010-03-07 20:05:53 +00:00
vagrant up
2010-08-02 00:28:44 +00:00
Note: The above `vagrant up` command will also trigger Vagrant to download the
2019-08-14 17:48:33 +00:00
`bionic64` box via the specified URL. Vagrant only does this if it detects that
2010-08-02 00:28:44 +00:00
the box doesn't already exist on your system.
2011-11-24 23:05:51 +00:00
## Getting Started Guide
2010-03-07 20:05:53 +00:00
2014-03-10 04:46:01 +00:00
To learn how to build a fully functional development environment, follow the
2016-01-25 18:14:54 +00:00
[getting started guide ](https://www.vagrantup.com/docs/getting-started/index.html ).
2010-03-07 20:05:53 +00:00
2018-05-16 09:48:56 +00:00
## Installing from Source
2010-03-09 17:01:20 +00:00
If you want the bleeding edge version of Vagrant, we try to keep master pretty stable
2016-11-11 22:18:08 +00:00
and you're welcome to give it a shot. Please review the installation page [here ](https://www.vagrantup.com/docs/installation/source.html ).
2010-03-09 17:01:20 +00:00
2010-02-10 07:10:16 +00:00
## Contributing to Vagrant
2010-01-22 03:13:53 +00:00
2018-05-16 09:48:56 +00:00
Once your Vagrant bundle is installed from Git repository, you can run the test suite with:
2010-01-22 03:13:53 +00:00
2016-01-07 20:29:29 +00:00
bundle exec rake
2010-01-22 03:13:53 +00:00
2018-05-16 09:48:56 +00:00
This will run the unit test suite, which should come back all green!
2010-12-24 00:35:41 +00:00
2019-06-05 04:16:03 +00:00
If you are developing Vagrant on a machine that already has a Vagrant package installation present, both will attempt to use the same folder for their configuration (location of this folder depends on system). This can cause errors when Vagrant attempts to load plugins. In this case, override the `VAGRANT_HOME` environment variable for your development version of Vagrant before running any commands, to be some new folder within the project or elsewhere on your machine. For example, in Bash:
2019-05-29 01:12:23 +00:00
2019-06-05 04:16:03 +00:00
export VAGRANT_HOME=~/.vagrant-dev
2019-05-29 01:12:23 +00:00
2019-06-05 04:16:03 +00:00
You can now run Vagrant commands against the development version:
2019-05-29 01:12:23 +00:00
bundle exec vagrant
2018-05-16 09:48:56 +00:00
Please take time to read the [HashiCorp Community Guidelines ](https://www.hashicorp.com/community-guidelines ) and the [Vagrant Contributing Guide ](https://github.com/hashicorp/vagrant/blob/master/.github/CONTRIBUTING.md ).
2010-12-24 00:35:41 +00:00
2018-05-16 09:48:56 +00:00
Then you're good to go!
2014-01-07 22:22:59 +00:00
2011-11-03 04:27:32 +00:00
### Acceptance Tests
2013-12-05 22:31:25 +00:00
Vagrant also comes with an acceptance test suite that does black-box
tests of various Vagrant components. Note that these tests are **extremely
slow** because actual VMs are spun up and down. The full test suite can
take hours. Instead, try to run focused component tests.
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
To run the acceptance test suite, first copy `vagrant-spec.config.example.rb`
to `vagrant-spec.config.rb` and modify it to valid values. The places you
should fill in are clearly marked.
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
Next, see the components that can be tested:
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
```
$ rake acceptance:components
cli
provider/virtualbox/basic
...
```
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
Then, run one of those components:
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
```
$ rake acceptance:run COMPONENTS="cli"
...
```