Skip to content

Instantly share code, notes, and snippets.

@keidrun
Created April 16, 2018 21:49
Show Gist options
  • Save keidrun/75a4f83037a7078af26c0cbfd92bb83b to your computer and use it in GitHub Desktop.
Save keidrun/75a4f83037a7078af26c0cbfd92bb83b to your computer and use it in GitHub Desktop.
Shell script to setup for Dockerize CLI on Ubuntu for CricleCI
#!/bin/bash
readonly DOCKERIZE_VERSION=v0.6.1
wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
sudo rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment