Skip to content

Instantly share code, notes, and snippets.

@anecula
Forked from jeefy/install-rancher-compose.sh
Created June 15, 2018 14:17
Show Gist options
  • Select an option

  • Save anecula/4f9dc2f13ec88c1c35b4f2add67222f3 to your computer and use it in GitHub Desktop.

Select an option

Save anecula/4f9dc2f13ec88c1c35b4f2add67222f3 to your computer and use it in GitHub Desktop.
Rancher Compose Install Script
#!/bin/bash
# To run locally: ` curl -s https://gist.githubusercontent.com/jeefy/7fed19a335d5caae24639e7ee7be1b71/raw/install-rancher-compose.sh | sh `
VERSION_NUM="0.9.2"
wget https://github.com/rancher/rancher-compose/releases/download/v${VERSION_NUM}/rancher-compose-linux-amd64-v${VERSION_NUM}.tar.gz
tar zxf rancher-compose-linux-amd64-v${VERSION_NUM}.tar.gz
rm rancher-compose-linux-amd64-v${VERSION_NUM}.tar.gz
sudo mv rancher-compose-v${VERSION_NUM}/rancher-compose /usr/local/bin/rancher-compose
sudo chmod +x /usr/local/bin/rancher-compose
rm -r rancher-compose-v${VERSION_NUM}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment