https://github.com/cundd/vagrant-boxes
Collection of handcrafted Vagrant Boxes
https://github.com/cundd/vagrant-boxes
Last synced: 4 months ago
JSON representation
Collection of handcrafted Vagrant Boxes
- Host: GitHub
- URL: https://github.com/cundd/vagrant-boxes
- Owner: cundd
- License: mit
- Created: 2016-01-05T10:43:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T17:04:34.000Z (over 10 years ago)
- Last Synced: 2026-01-01T21:07:40.857Z (7 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vagrant-boxes
Collection of handcrafted Vagrant Boxes
## Usage
Import the box
```bash
vagrant box add dupal https://github.com/cundd/vagrant-boxes/releases/download/0.1.0/alpine-3.3.0-x86_64.box
```
Install the Alpine Linux plugin
```bash
vagrant plugin install vagrant-alpine
```
Create the VM
```bash
vagrant init dupal;
vagrant up;
```
Configure a private network with a fixed IP address and use NFS for shared directories
```ruby
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
```