Tools, FAQ, Tutorials:
Install Docker CE Binary on CentOS
How to install Docker CE (Community Edition) on CentOS as binary packages?
✍: FYIcenter.com
If you have trouble installing Docker CE with the YUM tool, you can
install it as binary packages.
1. Verify OS, Kernel and Architecture:
fyicenter$ hostnamectl Operating System: CentOS Linux 7 (Core) Kernel: Linux 3.10.0-693.5.2.el7.x86_64 Architecture: x86-64
2. Download the binary package from https://download.docker.com/linux/static/stable/.
Click "x86-64", which matches your system Architecture. Download "docker-20.10.8.tgz" Download "docker-18.06.3-ce.tgz"
3. Try the Docker CE 18 version:
fyicenter$ mkdir docker18 fyicenter$ cd docker18 fyicenter$ tar xzvf ../docker-18.06.3-ce.tgz fyicenter$ ./docker/docker --version Docker version 18.06.3-ce, build d7080c1 fyicenter$ ./docker/dockerd --version Docker version 18.06.3-ce, build d7080c1 fyicenter$ ./docker-containerd --version containerd github.com/containerd/containerd v1.1.2 ...
4. Try the Docker 20 version:
fyicenter$ mkdir docker20 fyicenter$ cd docker20 fyicenter$ tar xzvf ../docker-20.10.7.tgz fyicenter$ ./docker/docker --version Docker version 20.10.7, build f0df350 fyicenter$ ./docker/dockerd --version Docker version 20.10.7, build b0f5bc3 fyicenter$ ./containerd --version containerd github.com/containerd/containerd v1.4.6
Note that the Docker CE 18 version uses "docker-containerd" instead of "containerd" command.
By the way, these binary versions work also on CentOS 8 systems, if the Architecture is "x86-64".
⇒ Starting Docker Daemon on CentOS
2023-03-17, 595👍, 0💬
Popular Posts:
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...