From 82857cd6df5b5daaa967a3bdffacb13d95a6225e Mon Sep 17 00:00:00 2001 From: Dee Koder Date: Tue, 25 Apr 2017 19:43:22 -0700 Subject: [PATCH] docs: Document homebrew install path changes for minio. (#4178) * docs: Document homebrew install path changes for minio. * updates: Updated with the feedback provided. * docs: Fix breaking change message as per feedback. * docs: fix typos in readme. * typo: grammar refactor of update instructions. --- docs/minio_homebrew.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/minio_homebrew.md diff --git a/docs/minio_homebrew.md b/docs/minio_homebrew.md new file mode 100644 index 000000000..3d3b51c72 --- /dev/null +++ b/docs/minio_homebrew.md @@ -0,0 +1,35 @@ +# Minio Installation on macOS + +## Fresh Install + +Install Minio on macOS via brew. + +``` +brew install minio/stable/minio +minio server ~/Photos +``` + +## Upgrade + +Step 1: Uninstall minio if you installed it using `brew install minio` + +``` +brew uninstall minio +``` +Step 2: Fresh Install using new path + +Once you remove minio completely from your system, proceed to do : + +``` +brew install minio/stable/minio +``` + +## Important Breaking Change + +#### Installation Path Changes for minio in brew + +> `brew upgrade minio` and `brew install minio` commands will no longer install the latest minio binaries on macOS. Use `brew install minio/stable/minio` in all your brew paths. + +Upstream bugs in golang 1.8 broke Minio brew installer. We will re-enable minio installation on macOS via `brew install minio` at a later date. + +