You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
### Run Minio docker image
|
|
|
|
Start docker, however data is not persistent.
|
|
|
|
```bash
|
|
docker run -p 9000:9000 minio/minio server /export
|
|
```
|
|
|
|
Map export and configuration directories from host for persistence.
|
|
|
|
```bash
|
|
docker run -p 9000:9000 --name minio1 -v /mnt/export/minio1:/export -v /mnt/config/minio1:/root/.minio minio/minio export /export
|
|
```
|
|
|