Created
May 13, 2022 08:08
-
-
Save rohan-molloy/9d5fe60c613c38644b4e2f1b6c8eb01a to your computer and use it in GitHub Desktop.
Download standalone docker cli
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
export DOCKERVERSION=20.10.5 | |
curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKERVERSION}.tgz \ | |
&& tar xzvf docker-${DOCKERVERSION}.tgz --strip 1 \ | |
-C /usr/local/bin docker/docker \ | |
&& rm docker-${DOCKERVERSION}.tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment