Last active
April 17, 2021 11:05
-
-
Save k8scat/7dbde16fff62c6fb4f2c944fd129d4fc to your computer and use it in GitHub Desktop.
Install DockerCompose
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
#!/bin/bash | |
# | |
# Install DockerCompose | |
# Maintainer: [email protected] | |
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