1

I need to update my docker version as per older version its showing some issue related to go code so, i have to update the docker version as i found the issue. My linux machine in AWS.

1 Answers1

0

You can update your docker version using these commands:

sudo apt-get update
sudo apt-cache madison docker-ce
sudo apt-get install docker-ce=<VERSION>
sudo service docker restart

Note: You have to replace the version in the <VERSION> with your preferred version.

Ajay
  • 1,246