Skip to content

Instantly share code, notes, and snippets.

@k8scat
Last active April 17, 2021 11:05
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 k8scat/7dbde16fff62c6fb4f2c944fd129d4fc to your computer and use it in GitHub Desktop.
Save k8scat/7dbde16fff62c6fb4f2c944fd129d4fc to your computer and use it in GitHub Desktop.
Install DockerCompose
#!/bin/bash
#
# Install DockerCompose
# Maintainer: k8scat@gmail.com
set -e
#version=1.28.2
version=$1
curl -L "https://github.com/docker/compose/releases/download/${version}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment