vagrant/README.md

91 lines
3.3 KiB
Markdown
Raw Normal View History

2010-02-10 07:10:16 +00:00
# Vagrant
* Website: [https://www.vagrantup.com/](https://www.vagrantup.com/)
2011-11-03 04:19:06 +00:00
* Source: [https://github.com/mitchellh/vagrant](https://github.com/mitchellh/vagrant)
2016-11-14 22:12:04 +00:00
* [![Gitter chat](https://badges.gitter.im/mitchellh/vagrant.png)](https://gitter.im/mitchellh/vagrant)
* Mailing list: [Google Groups](https://groups.google.com/group/vagrant-up)
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
2014-04-30 16:58:05 +00:00
For the quick-start, we'll bring up a development machine on
[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
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
[VirtualBox](https://www.virtualbox.org/)
2014-04-30 16:58:05 +00:00
installed. After this,
[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:
2014-03-10 04:46:01 +00:00
vagrant init hashicorp/precise32
2010-03-07 20:05:53 +00:00
vagrant up
Note: The above `vagrant up` command will also trigger Vagrant to download the
2013-01-14 01:44:08 +00:00
`precise32` box via the specified URL. Vagrant only does this if it detects that
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
[getting started guide](https://www.vagrantup.com/docs/getting-started/index.html).
2010-03-07 20:05:53 +00:00
## Installing the Gem from Git
If you want the bleeding edge version of Vagrant, we try to keep master pretty stable
and you're welcome to give it a shot. Please review the installation page [here](https://www.vagrantup.com/docs/installation/source.html).
2010-02-10 07:10:16 +00:00
## Contributing to Vagrant
2016-01-07 20:29:29 +00:00
To install Vagrant from source, please [follow the guide in the Wiki](https://github.com/mitchellh/vagrant/wiki/Installing-Vagrant-from-Source).
2011-11-03 04:27:32 +00:00
2016-01-07 20:29:29 +00:00
You can run the test suite with:
2016-01-07 20:29:29 +00:00
bundle exec rake
2011-11-03 04:27:32 +00:00
This will run the unit test suite, which should come back all green! Then you're good to go!
2010-12-24 00:35:41 +00:00
If you want to run Vagrant without having to install the gem, you may use `bundle exec`,
like so:
2013-12-05 22:31:25 +00:00
bundle exec vagrant help
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"
...
```