Created
June 13, 2018 13:04
-
-
Save netinlet/870760bc40dad89e8f00072b9bd7d391 to your computer and use it in GitHub Desktop.
Chamber Install script for Docker
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
CHAMBER_VERSION="2.1.0" | |
CHAMBER_URL="https://github.com/segmentio/chamber/releases/download/v${CHAMBER_VERSION}/chamber-v${CHAMBER_VERSION}-linux-amd64" | |
if [ ! -f "/usr/local/bin/chamber" ]; then | |
echo "Downloading chamber from $CHAMBER_URL" | |
curl -L $CHAMBER_URL -o /usr/local/bin/chamber | |
chmod +x /usr/local/bin/chamber | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment