Skip to content

Instantly share code, notes, and snippets.

@araujo88
Created August 9, 2024 04:03
Show Gist options
  • Save araujo88/2b2a475a440f6237a1e3727527437705 to your computer and use it in GitHub Desktop.
Save araujo88/2b2a475a440f6237a1e3727527437705 to your computer and use it in GitHub Desktop.
Install docker in arch linux
#!/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