Skip to content

Instantly share code, notes, and snippets.

@lucasquin
Last active May 1, 2025 13:17
Show Gist options
  • Save lucasquin/9cfde537126d3e176e4cfb75d836068b to your computer and use it in GitHub Desktop.
Save lucasquin/9cfde537126d3e176e4cfb75d836068b to your computer and use it in GitHub Desktop.
install docker and configure in linux

install docker

sudo pacman -S docker

start docker daemom

sudo systemctl start docker.service

start docker daemom on system boot

sudo systemctl enable docker.service

add docker to user group

sudo usermod -aG docker $USER

-----> reboot <-----

verify docker instalation

docker run hello-world

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment