Problem scenario
You want to install Docker, but you want to be sure that the kernel is high enough to be supported.
Solution
The minimum kernel version is stated on Docker’s website. As the spring time of 2017, run this script to find out if your kernel version is high enough:
a=$(uname -r)
b=$(echo $a | awk -F
…
Continue reading “How Do You Know If Your Linux Kernel Meets the Minimum Requirements for Docker?”