vagrant-labs/offspringidea/README.md

28 lines
855 B
Markdown
Raw Normal View History

2018-03-26 22:03:13 +00:00
# Custom Virtual Machine Size
## Dependencies & Plugins
This _Vagrantfile_ needs the Vagrant plugin `vagrant-disksize` to resize the _box_ file with this variable: `config.disksize.size = "120GB"`
```
vagrant plugin install vagrant-disksize
```
## Requirements
Name | Box | CPU | RAM | Disk |
--------|-----------------|-----|-----|--------|
ubuntu1 | ubuntu/xenial64 | 1 | 1GB | 10GB* |
ubuntu2 | ubuntu/xenial64 | 1 | 4GB | 120GB* |
2018-04-19 18:58:24 +00:00
ubuntu3 | ubuntu/bionic64 | 1 | 1GB | 10GB* |
2018-03-26 22:03:13 +00:00
###### _*Disk size shown is the maximum capacity. Disk grows with usage. ~1GB of disk space required per OS install._
2018-03-26 22:12:49 +00:00
## :floppy_disk: Setup and Start
One-liner:
```
2018-03-27 20:13:55 +00:00
mkdir ~/vm-offspringidea ; cd ~/vm-offspringidea && curl -q https://raw.githubusercontent.com/stationgroup/vagrant-labs/master/offspringidea/Vagrantfile -O && vagrant up
2018-03-26 22:12:49 +00:00
```