Skip to content

Instantly share code, notes, and snippets.

@netinlet
Created June 13, 2018 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netinlet/870760bc40dad89e8f00072b9bd7d391 to your computer and use it in GitHub Desktop.
Save netinlet/870760bc40dad89e8f00072b9bd7d391 to your computer and use it in GitHub Desktop.
Chamber Install script for Docker
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