This tutorial is going to show you how to install Docker on Manjaro 17.0. When this post is being written, Docker 1.17 is available via Pacman repository. Docker is a new technology that lets us to software in a container. For more information about Docker, please visit the official website.
Install Docker on Manjaro 17.0
Open Terminal and paste this command
sudo pacman -S docker
Output sample
[dhani@dhani-manjaro ~]$ sudo pacman -S docker
[sudo] password for dhani:
resolving dependencies…
looking for conflicting packages…Packages (2) bridge-utils-1.6-1 docker-1:17.04.0-1
Total Download Size: 17.31 MiB
Total Installed Size: 80.78 MiB:: Proceed with installation? [Y/n]
Run Docker service
sudo systemctl start docker
Check Docker version
[dhani@dhani-manjaro ~]$ docker –version
Docker version 17.04.0-ce, build 4845c567eb
Show Docker help
docker –help
Thanks for reading this post. I will update this blog to cover more tutorial about Docker.
Leave a Reply