vagrant-box

Manage Vagrant base box images

TLDR

List boxes
$ vagrant box list
Add box
$ vagrant box add [name]
Remove box
$ vagrant box remove [name]
Update boxes
$ vagrant box update
Prune old versions
$ vagrant box prune

SYNOPSIS

vagrant box command [options]

DESCRIPTION

vagrant box manages Vagrant boxes. Boxes are base images used to create virtual machines. Download from Vagrant Cloud or import from local files.

PARAMETERS

list

List installed boxes.
add name
Download and add box.
remove name
Remove box.
update
Update boxes.
prune
Remove old box versions.
outdated
Check for updates.
--provider name
Specify provider.
--box-version version
Specify version.

INSTALL

sudo apt install vagrant
sudo dnf install vagrant
nix profile install nixpkgs#vagrant

SEE ALSO

vagrant(1), vagrant-init(1)