mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-07-15 20:06:30 -04:00
26 lines
1.4 KiB
Text
26 lines
1.4 KiB
Text
---
|
|
layout: vagrant-cloud
|
|
page_title: Find and Use Boxes
|
|
description: "Discover Vagrant boxes that contain the technologies you need for a Vagrant environment."
|
|
---
|
|
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
> [!IMPORTANT]
|
|
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
|
|
# Finding and Using Boxes
|
|
|
|
A primary use case of Vagrant Cloud by HashiCorp is to be able to easily find
|
|
boxes you can use with Vagrant that contain the technologies you need
|
|
for a Vagrant environment. We've made it extremely easy to do that:
|
|
|
|
1. Go to the [Discover page](https://app.vagrantup.com/boxes/search), and search for
|
|
any box you want.
|
|
|
|
1. Once you find a box, click its name to learn more about it.
|
|
|
|
1. When you're ready to use it, copy the name, such as "hashicorp/bionic64"
|
|
and initialize your Vagrant project with `vagrant init hashicorp/bionic64`.
|
|
Or, if you already have a Vagrant project created, modify the Vagrantfile
|
|
to use the box: `config.vm.box = "hashicorp/bionic64"`
|