Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Created May 13, 2022 08:08
Show Gist options
  • Save rohan-molloy/9d5fe60c613c38644b4e2f1b6c8eb01a to your computer and use it in GitHub Desktop.
Save rohan-molloy/9d5fe60c613c38644b4e2f1b6c8eb01a to your computer and use it in GitHub Desktop.
Download standalone docker cli
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