diff --git a/README.md b/README.md index b40775358..b5d436feb 100644 --- a/README.md +++ b/README.md @@ -52,9 +52,9 @@ Download ``minio`` for: C:\Users\Username\Downloads> minio.exe --help ~~~ -#### Docker container +#### Docker container -Download ``minio`` for docker. +Download ``minio`` for docker. ~~~ $ docker pull minio/minio @@ -112,9 +112,9 @@ To configure Minio Client. $ wget https://dl.minio.io/client/mc/release/linux-amd64/mc $ chmod 755 mc - $ ./mc config host add http://localhost:9000 G5GJRH51R2HSUWYPGIX5 uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gFASuZ + $ ./mc config host add http://localhost:9000 G5GJRH51R2HSUWYPGIX5 uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gFASuZ $ ./mc mb localhost:9000/photobucket - $ ./mc cp ~/Photos... localhost:9000/photobucket + $ ./mc cp --recursive ~/Photos localhost:9000/photobucket Starting minio server: Listening on http://127.0.0.1:9000 diff --git a/server-main.go b/server-main.go index 90ea9d325..8a2099310 100644 --- a/server-main.go +++ b/server-main.go @@ -250,14 +250,14 @@ func initServer() *probe.Error { if runtime.GOOS == "windows" { Println("\n\tDownload https://dl.minio.io/client/mc/release/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc.exe") Println("\t$ mc.exe config host add http://localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey) - Println("\t$ mc.exe mb localhost/photobucket") - Println("\t$ mc.exe cp C:\\Photos... localhost/photobucket") + Println("\t$ mc.exe mb localhost:9000/photobucket") + Println("\t$ mc.exe cp --recursive C:\\Photos localhost:9000/photobucket") } else { Println("\n\t$ wget https://dl.minio.io/client/mc/release/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc") Println("\t$ chmod 755 mc") Println("\t$ ./mc config host add http://localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey) - Println("\t$ ./mc mb localhost/photobucket") - Println("\t$ ./mc cp ~/Photos... localhost/photobucket") + Println("\t$ ./mc mb localhost:9000/photobucket") + Println("\t$ ./mc cp --recursive ~/Photos localhost:9000/photobucket") } Println() return nil