# docker pull minio/minio
# docker run -p 9000:9000 –name MinIO-01 -v /media/usb:/data -e „MINIO_ACCESS_KEY=<Accesskey>“ -e „MINIO_SECRET_KEY=<SecretKey>“ minio/minio server /data
# docker ps –all
# docker rm <CONTAINER>
# docker stop <CONTAINER>
# docker start <CONTAINER>
MinIO server supports rolling upgrades, i.e. you can update one MinIO instance at a time in a distributed cluster. This allows upgrades with no downtime. Upgrades can be done manually by replacing the binary with the latest release and restarting all servers in a rolling fashion. However, we recommend all our users to use mc admin update from the client. This will update all the nodes in the cluster simultaneously and restart them, as shown in the following command from the MinIO client (mc)