Created
September 11, 2022 07:43
-
-
Save v0lkan/6bf304c37b5dd3715c6d7a0993db8e98 to your computer and use it in GitHub Desktop.
The Fastest Way to Install docker on Ubuntu
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
#!/usr/bin/env bash | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
# ^ Read and verify the above script before executing the command below: | |
sudo sh get-docker.sh | |
# ref: https://docs.docker.com/engine/install/ubuntu/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment