This is a big commit, and I apologize in advance for the future
git-blames all pointing to me. This commit does a few things:
1. Merges the website/docs and website/www repo into a single website repo
to be in line with other HashiCorp projects
2. Updates to use middleman-hashicorp
3. Converts less to scss to be in line with other projects
4. Updates page styles to be in line with other projects
5. Optimizes images
6. Prepare for S3 + Fastly deployment with scripts, etc.
7. Removes blog posts (they have been transferred to hashicorp.com with
redirects in place
8. Updated sitemap generation script for better SEO
9. Fixed many broken links
10. Add description to all fields
29 lines
1.2 KiB
Markdown
29 lines
1.2 KiB
Markdown
---
|
|
layout: "docs"
|
|
page_title: "Providers"
|
|
sidebar_current: "providers"
|
|
description: |-
|
|
While Vagrant ships out of the box with support for VirtualBox, Hyper-V, and
|
|
Docker. Vagrant has the ability to manage other types of machines as well.
|
|
This is done by using other providers with Vagrant.
|
|
---
|
|
|
|
# Providers
|
|
|
|
While Vagrant ships out of the box with support for [VirtualBox](https://www.virtualbox.org),
|
|
[Hyper-V](https://www.microsoft.com/hyper-v), and [Docker](https://www.docker.io),
|
|
Vagrant has the ability to manage other types of machines as well. This is done
|
|
by using other _providers_ with Vagrant.
|
|
|
|
Alternate providers can offer different features that make more sense in your use case.
|
|
For example, if you are using Vagrant for any real work, [VMware](https://www.vmware.com)
|
|
providers are recommended since they're well supported and generally more
|
|
stable and performant than VirtualBox.
|
|
|
|
Before you can use another provider, you must install it. Installation of other providers
|
|
is done via the Vagrant plugin system.
|
|
|
|
Once the provider is installed, usage is straightforward and simple, as
|
|
you would expect with Vagrant. Read into the relevant subsections found in
|
|
the navigation to the left for more information.
|