Skip to content
Léo MERCIER edited this page Aug 4, 2024 · 7 revisions

Docker is a lightweight container manager. We can install it following the commands

sudo pacman -S docker docker-dinit
sudo dinitctl enable dockerd # Don't forget sudo to start the service as root

We can add the current user to use Docker by running

sudo usermod -aG docker $(whoami)
sudo setfacl --modify user:$(whoami):rw /var/run/docker.sock

Now you can run any Docker commands as a user

docker info

Issue with Wireguard

You might encounter connectivity issues when connected to a Wireguard VPN. Check that your docker0 interface's MTU value is inferior or equal to the MTU value of your wg0 interface.

Clone this wiki locally