Tips to run Docker on Arch
Enable the loop module.
tee /etc/modules-load.d/loop.conf <<< "loop" modprobe loop
Install Docker.
pacman -Syu pacman -S docker
Start and enable.
systemctl start docker.service systemctl enable docker.service
Test it.
docker info
If you need to run docker as normal user, add the user to docker group.
usermod -aG docker <username>
Last updated 5 years ago