# Quick Start

<!--- Template Guidance 
Write a short introduction and the getting started guide to your product. 
If there are any standout features to call it, this is probably the place to do it. 

NOTE: Take a look at the quick-start of Object Storage for an idea on the tone and the level of detail. 
-->

## Prerequisites

Update to the latest Exoscale CLI (minimum version: 1.74.5). For
installation, visit [Exoscale CLI Installation](https://github.com/exoscale/cli#installation).


## Block Storage Volumes


### Create 

```bash
exo compute block-storage create volume-test-1 --size 100 --zone ch-gva-2
```

### List 

```bash
exo compute block-storage list --zone ch-gva-2
```


### Attach 

```bash
exo compute block-storage attach volume-test-1 my-instance --zone ch-gva-2
```


### Detach 

```bash
exo compute block-storage detach volume-test-1 --zone ch-gva-2
```

