https://github.com/phase2/homebrew-devtools
Homebrew repository for devtools
https://github.com/phase2/homebrew-devtools
Last synced: 5 months ago
JSON representation
Homebrew repository for devtools
- Host: GitHub
- URL: https://github.com/phase2/homebrew-devtools
- Owner: phase2
- License: mit
- Created: 2016-02-05T00:01:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T17:36:42.000Z (about 9 years ago)
- Last Synced: 2025-01-12T17:36:24.324Z (about 1 year ago)
- Language: Ruby
- Size: 23.4 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# homebrew-devtools
Homebrew Tap (a.k.a. repository) for Phase2 DevTools
## How to use this Tap
To get access to all this Tap has to offer, you need to, well, tap it.
`brew tap phase2/devtools`
Once tapped, you can use the formula here to install DevTools and the required
Docker dependencies. We include the Docker formula in here because Homebrew
does not contain a native facility to install older versions of a formula. It's
latest or nothing. This Tap will contain formula for the versions of the
Docker tools that are compatible with current version of DevTools.
## To install DevTools
`brew install devtools`
This will get you the `devtools` binary. However you will likely need to
install the various Docker formula to get the proper versions of Docker
tools for DevTools. You can do so like...
```
brew install phase2/devtools/docker
brew install phase2/devtools/docker-machine
brew install phase2/devtools/docker-compose
```
## Upgrading DevTools
If a new version of DevTools is released you need to do the following to upgrade.
```
brew update
brew upgrade devtools
```
## Troubleshooting
To help troubleshoot your devtools installation run the following command:
`devtools doctor`
If you need to enable a specific/proper version of any of these formula you can
use this command, for example, to explicitly use the 0.5.4 version of docker-machine.
`brew switch docker-machine 0.5.4`