brew search docker
## Formulae에 있는 library라면...
brew install [LIB_NAME]
## Casks에 있는 library라면...
brew install --cask [LIB_NAME]
# >> brew install --cask docker
launchctl list | grep docker
.
.
.
.
brew search mongodb
brew install mongodb/brew/mongodb-community@5.0
brew services start mongodb-community@5.0
brew services
echo 'export PATH="/usr/local/opt/mongodb-community@5.0/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
zshrc에 변수 path 입력
.
.
.
Profit!