Last active
January 3, 2022 11:00
-
-
Save fnogcps/a6f95ac96398d2d928250ac54440acfd to your computer and use it in GitHub Desktop.
Docker's install script
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 | |
| if [[ -f /etc/apt/sources.list.d/docker.list ]]; then | |
| sudo rm /etc/apt/sources.list.d/docker.list | |
| fi | |
| sudo apt update | |
| curl -sL get.docker.com | sed 's/9)/10)/' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment