-
-
Save niemyjski/59070374bed2e869642c55bdbcd8eb9f to your computer and use it in GitHub Desktop.
Minio windows batch examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem This program starts the minio batch. | |
@echo off | |
setlocal | |
path=C:\programs\minio;%path% | |
set MINIO_ACCESS_KEY=accountname1 | |
set MINIO_SECRET_KEY=secretForAccountName | |
call minio gateway azure --address=:9001 >c:\test\c1.out | |
endlocal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem This program starts the minio batch. | |
@echo off | |
setlocal | |
path=C:\programs\minio;%path% | |
set MINIO_ACCESS_KEY=minio | |
set MINIO_SECRET_KEY=minio123 | |
call minio server --config-dir=C:\test\c1 --address=:9001 >c:\test\c1.out D:\export | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment