mysql -u username -p -h host_ip --port=portmysqldump -u user -p database [table, table] > name_file.sql| # Step 1 : Start minio server with non-persistent data storage policy | |
| # | |
| # Description: -p 9000:9000: Minio server runs on port 9000 inside the docker container, -e 9000:9000 command is exposing the internal port on | |
| # on external port. | |
| # | |
| # -e "MINIO_ACCESS_KEY=access_key": It sets an envrionment variable inside container named as MINIO_ACCESS_KEY | |
| # with the value provided by user. It will be used when a user wants to access | |
| # minio server | |
| # | |
| # -e "MINIO_SECRET_KEY=access_key_secret": It sets an envrionment variable inside container named as MINIO_SECRET_KEY |