when is try to install docker-ce its shows "Failures plugins " but when verified docker and docker compose both are showing latest version, and after submitting section it show “incomplete docker-ce is not installed in appserver2”
A quick google search gives you the answer
ssh to the correct app server, become root with sudo -i
then
dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
dnf install docker-ce --nobest -y
curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
systemctl enable docker
systemctl start docker