The virtual machine used is CentOS 8.4, which simulates the server environment. It cannot connect to the external network and can only install software offline. First, download the Docker installation package from the external network machine. Download address:
You can download the corresponding version according to your needs. I downloaded 20.10.8. Unzip the file package: tar zxvf docker-20.10.8.tgz Get the docker folder and enter it, you can see the following files: In order to make the docker command executable in any location, you need to move the above files to the system executable directory, such as the /usr/bin directory; or add the current directory to the environment variable. Here, we use the first method. cp * /usr/bin/ Optionally, do not overwrite runc. At this point, you can execute the docker command. The following command can view the docker version information. Furthermore, in order to facilitate the management of docker, we need to configure the docker service. Create a docker.service file in the /etc/systemd/system directory. The content of the file is as follows: [Unit] Description=Docker Application Container Engine Documentation=https://docs.docker.com After=network-online.target firewalld.service Wants=network-online.target [Service] Type=notify # the default is not to use systemd for cgroups because the delegate issues still # exists and systemd currently does not support the cgroup feature set required # for containers run by docker ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock ExecReload=/bin/kill -s HUP $MAINPID # Having non-zero Limit*s causes performance problems due to accounting overhead # in the kernel. We recommend using cgroups to do container-local accounting. LimitNOFILE=infinity LimitNPROC=infinity LimitCORE=infinity # Uncomment TasksMax if your systemd version supports it. # Only systemd 226 and above support this version. #TasksMax=infinity TimeoutStartSec=0 # set delegate yes so that systemd does not reset the cgroups of docker containers Delegate=yes # kill only the docker process, not all processes in the cgroup KillMode=process # restart the docker process if it exits prematurely Restart=on-failure StartLimitBurst=3 StartLimitInterval=60s [Install] WantedBy=multi-user.target Add executable permissions to docker.service: chmod +x /etc/systemd/system/docker.service Reload the service configuration file: systemctl daemon-reload Restart Docker: systemctl restart docker Enable automatic startup: systemctl enable docker Check the docker status: systemctl status docker This is the end of this article about CentOS 8.4 offline installation of Docker. For more information about CentOS offline installation of Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: JavaScript operation elements teach you how to change the page content style
>>: SQL ROW_NUMBER() and OVER() method case study
1. Link layout of the new site homepage 1. The loc...
Database transaction isolation level There are 4 ...
The detailed installation and configuration of th...
1. Flash plug-in package download address: https:...
Table of contents 1. Timer monitoring 2. Event mo...
3. MySQL Data Management The first method: not re...
The CSS position attribute specifies the element&...
Disable Build Partition expressions do not suppor...
Table of contents tool: Login scenario: practice:...
Sometimes you need to set several areas on a pict...
1. Background In the context of rapid updates and...
As shown below: XML/HTML CodeCopy content to clip...
To debug js code, you need to write debugger in t...
I use tengine, the installation directory is /usr...
If you’re looking for inspiration for columnar web...