23 lines
504 B
Markdown
Raw Normal View History

# vagrant destroy
> Stop a guest machine and destroy all its resources.
> Any boxes installed are kept intact.
> See also: `vagrant`.
> More information: <https://developer.hashicorp.com/vagrant/docs/cli/destroy>.
- Destroy the currently running machine:
`vagrant destroy`
- Target a machine by name or ID:
`vagrant destroy {{name|id}}`
- Do not ask for confirmation before destroying:
`vagrant destroy {{[-f|--force]}}`
- Shut down the machine gracefully:
`vagrant destroy {{[-g|--graceful]}}`