https://github.com/tmigone/multipass
https://github.com/tmigone/multipass
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmigone/multipass
- Owner: tmigone
- Created: 2021-06-14T16:47:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T14:52:29.000Z (over 4 years ago)
- Last Synced: 2025-06-13T23:36:07.609Z (7 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# multipass
Provisioning scripts for various utilities:
- docker
- nodejs
- balena-cli
## Install multipass
```bash
brew install --cask virtualbox # Requires allowing security settings
brew install --cask multipass
```
## Setup an instance
### Create VM
Create a VM running the default Ubuntu LTS:
```bash
multipass launch --name=balena --mem=4G --disk=20G
```
### Install utilities
```bash
curl --silent https://raw.githubusercontent.com/tmigone/multipass/master/nodejs.sh | sh
curl --silent https://raw.githubusercontent.com/tmigone/multipass/master/docker.sh | sh
curl --silent https://raw.githubusercontent.com/tmigone/multipass/master/balena-cli.sh | sh
```