How to Use Docker on Arch Linux - Linux Hint
https://linuxhint.com/docker_arch_linuxDocker on Arch Linux Installing Docker Because of its sheer popularity and benefits, Docker is now an official package of the Arch Linux package collection. No need to tinker with AUR. At first, ensure that the system is up-to-date. sudo pacman -Syu Enable the loop module. sudo tee / etc / modules-load.d / loop.conf <<< "loop" modprobe loop
Docker - ArchWiki - Arch Linux
https://wiki.archlinux.org/title/DockerThe following command downloads the latest Arch Linux image and uses it to run a Hello World program within a container: # docker run -it --rm archlinux bash -c "echo hello world" If you want to be able to run the docker CLI command as a non-root user, add your user to the docker user group, re-login, and restart docker.service .