You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> -[Download](https://developer.hashicorp.com/vagrant/downloads) and Run the installer for Windows system.
5
11
> - The installer will automatically add `vagrant` to your system path so that it is available in terminals.
@@ -9,10 +15,12 @@
9
15
> - Vagrant is meant to run with one Vagrantfile per project.
10
16
> - When you run any `vagrant` command, Vagrant climbs up the directory tree looking for the first Vagrantfile it can find, starting first in the current directory.
11
17
> - This feature lets you run `vagrant` from any directory in your project.
12
-
> - Find more boxes at [HashiCorp's Vagrant Cloud box catalog](https://vagrantcloud.com/boxes/search)
18
+
> - Find more boxes at [HashiCorp's Vagrant Cloud box catalog](https://portal.cloud.hashicorp.com/vagrant/discover)
13
19
14
20

15
21
22
+
---
23
+
16
24
## Default Provider
17
25
18
26
-*If you have the VMware provider installed, it will always take priority over VirtualBox.*
@@ -29,7 +37,7 @@ Vagrant.configure("2") do |config|
29
37
end
30
38
```
31
39
32
-
40
+
---
33
41
34
42
## VirtualBox
35
43
@@ -51,7 +59,7 @@ vagrant init hashicorp/bionic64
51
59
vagrant box add hashicorp/bionic64
52
60
```
53
61
54
-
> This will download the box named `hashicorp/bionic64` from [HashiCorp's Vagrant Cloud box catalog](https://vagrantcloud.com/boxes/search), where you can find and host boxes.
62
+
> This will download the box named `hashicorp/bionic64` from [HashiCorp's Vagrant Cloud box catalog](https://portal.cloud.hashicorp.com/vagrant/discover), where you can find and host boxes.
55
63
>
56
64
> Boxes are globally stored for the current user. Each project uses a box as an initial image to clone from, and never modifies the actual base image. This means that if you have two projects both using the `hashicorp/bionic64` box you just added, adding files in one guest machine will have no effect on the other machine.
- To upgrade the Vagrant VMware utility, download the latest version from the [Vagrant VMware utility downloads page](https://developer.hashicorp.com/vagrant/downloads/vmware) and install the system package to your local system.
144
153
- You can install or update the Vagrant VMware plugin to the latest version by re-running the install command:
0 commit comments