https://github.com/sheldonhull/vagrant
some vagrant profiles to help reduce the pain of local VM management
https://github.com/sheldonhull/vagrant
vagrantfile
Last synced: 5 months ago
JSON representation
some vagrant profiles to help reduce the pain of local VM management
- Host: GitHub
- URL: https://github.com/sheldonhull/vagrant
- Owner: sheldonhull
- Created: 2022-12-05T22:46:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-01-15T21:06:17.000Z (5 months ago)
- Last Synced: 2026-01-15T23:54:05.298Z (5 months ago)
- Topics: vagrantfile
- Language: Go
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Vagrant
## Install Mage
Use [aqua](https://aquaproj.github.io/docs/install) or if comfortable with Go development install manually `go install github.com/magefile/mage@latest` (requires `GOPATH/bin` to be set in your environment variables).
Run `mage` to see available tasks to spin up, provision, or tear down a VM.
## Snippets
For virtual box guest additions.
```shell
vagrant plugin install vagrant-vbguest
```
## Run Windows 10 Defaults
```shell
vagrant init gusztavvargadr/windows-10 && vagrant up
```
## Ubuntu Install Vagrant
```shell
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install vagrant
```