Docker

A granulated virtualization technology.

Installing the Docker CLI

In Manjaro, use the pamac package manager to install docker

After installation, start the docker service with:

sudo systemctl start docker.service
sudo systemctl enable docker.service

To run docker commands without typing sudo, add yourself to the docker, like this:

sudo usermod -aG docker username

You may need to log out and / or reboot before this change takes effect.

11 / 2022
Basic docker commands
version
show basic version information docker version
info
runtime information docker info
search
find images docker search example
pull
download and install an image docker pull hello-world
run
run an image docker run hello-world
container
see status of containers docker container
images
list of installed images docker images
stats
show cpu, ram, and network usage of running images docker stats
network
show network configuration docker network ls

Reference: https://linuxconfig.org/manjaro-linux-docker-installation

11 / 2022