In this article
In older versions of the DNS Relay there are reported instances of images not auto-updating.
Run these scripts to check for updates.
Run this script on the first update check:
sudo apt update sudo apt upgrade -y sudo dpkg --configure -a sudo apt autoremove -y sudo apt install ansible sudo pip3 install ansible
Run this script to update the Relay Docker:
sudo ./check_for_update.sh
The Relay should now be up to date and run as expected.
Continue below to completely remove and reinstall the docker package if the update check script didn’t resolve the issue.
Uninstall both docker-py and docker:
sudo pip3 uninstall docker-py sudo pip3 uninstall docker
Verify uninstallation:
pip3 show docker-py # Should show that it's not found pip3 show docker # Should show that it's not found
Reinstall the docker package:
sudo pip3 install docker
Verify installation:
pip3 show docker # Should show information about the installed package
Comments
0 comments
Please sign in to leave a comment.