Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
minio
/
Remove bucket recursively
Remove bucket recursively
minio
Delete a bucket and all its objects
mc rb --force myminio/my-bucket
⎘ copy
#minio
more minio
all 10 commands →
Configure mc alias
mc alias set myminio https://minio.example.com ACCESSKEY SECRETKEY
List buckets
mc ls myminio
Create bucket
mc mb myminio/my-bucket
Copy file to bucket
mc cp ./file.tar.gz myminio/my-bucket/backups/
Mirror local dir to bucket
mc mirror --watch ./data myminio/my-bucket/data