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
| # Add these functions to your ~/.bashrc in order to be able to query private | |
| # Docker registries from the commandline. You'll need the JQ library | |
| # (http://stedolan.github.io/jq/) to be installed. Alternatively, you can just | |
| # pipe to " python -mjson.tool" to get pretty JSON formatting | |
| # TODO Enter the correct details here | |
| DOCKER_REGISTRY_HOST=docker.yourcompany.com | |
| DOCKER_REGISTRY_AUTH=someuser:somepassword | |
| function _docker_fetch() { |
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
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Twitter (app store) |
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
| git config core.editor "'C:\Program Files (x86)\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin" |