Update cheatsheets

This commit is contained in:
ivuorinen
2025-02-03 00:17:52 +00:00
parent a3844df520
commit 85f0642d2d
6 changed files with 152 additions and 9 deletions

42
tldr/vagrant-box Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vagrant box
> Manage Vagrant boxes (virtual machine images).
> See also: `vagrant`.
> More information: <https://developer.hashicorp.com/vagrant/docs/cli/box>.
- List all installed boxes:
`vagrant box list`
- Add a new box:
`vagrant box add {{hashicorp/bionic64}}`
- Add a box from a custom URL:
`vagrant box add {{my-box}} {{https://example.com/my-box.box}}`
- Remove an installed box:
`vagrant box remove {{hashicorp/bionic64}}`
- Update all boxes that are in use in the current Vagrant environment:
`vagrant box update`
- Update a specific box:
`vagrant box update --box {{bento/debian-12}}`
- Check if there is a new version available for the box that you are using:
`vagrant box outdated`
- Clean up old versions of installed boxes:
`vagrant box prune`