Created
July 24, 2023 09:37
-
-
Save innomatics/b8c95d04ecd7600b8e5a8e07f7005be7 to your computer and use it in GitHub Desktop.
Docker Setup Ubuntu 22.04
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
```shell | |
sudo apt-get update | |
sudo apt-get install ca-certificates curl gnupg | |
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | |
sudo usermod -aG docker ${USER} | |
# Avoid logout / login | |
newgrp docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment