Created
August 9, 2024 04:03
-
-
Save leo-aa88/2b2a475a440f6237a1e3727527437705 to your computer and use it in GitHub Desktop.
Install docker in arch linux
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 | |
sudo pacman -S docker | |
systemctl start docker.service | |
sudo docker info | |
sudo usermod -aG docker $USER | |
docker run hello-world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment