An open API service indexing awesome lists of open source software.

https://github.com/tmigone/multipass


https://github.com/tmigone/multipass

Last synced: 5 months ago
JSON representation

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
```