By default podman-docker is installed. and this will cause the following error:
package docker-ce-cli-1:19.03.5-3.el7.x86_64 conflicts with docker provided by podman-docker-1.0.5-1.gitf604175.module_el8.0.0+194+ac560166.noarch
To avoid this issue run the following commands:
Test Docker CE
Installing Docker Compose
Troubleshooting
408 Request Time-out while signing in or pulling an image
This issue was caused by the fact that the MTU on both the ethernet and wifi connection was set to AUTO. The issue can be fixed changing the MTU to 900 using one of the following options:
For each network interface managed by the NetworkManager daemon, a configuration file is created inside the /etc/sysconfig/network-scripts directory. The name of the file is composed by the ifcfg- prefix plus the name of the interface.
We can manually change the NIC configuration files:
By running the ip addr command again we can verify the IP has changed:
using nmtui:
Usingip link set
Container B has not access to Container A and log file error is:
NO ROUTE TO HOST network request from container to...
This was firewall issue in the OS hosting docker. To troubleshoot the issue: 1) Check if the port from container A is accessible from the localhost:
ss | head -1 1.ss -l | grep LISTEN | grep tcp
telnet localhost 2181
check docker logs -f containerA to watch the connection happening
If the connection can happen from the hosting operation system, and not from container B, then it try to temporary disable the firewalld to verify if this fixes the issue.
Add appropriate firewall configuration
Further information on Docker networking time issue can be found here: