Search This Blog

Powered by Blogger.

Pages

Tags:

Docker client and server don't have same version

By TY Sunday, October 11, 2015


This can happen if you have updated docker, but the service has not been restarted. You will then try to connect to the docker daemon with the updated client, while the daemon (that was already running before the update) is still running the older version.
To fix this, restart the service:
sysV init:
service docker restart
systemd:
systemctl daemon-reload
systemctl restart docker

Reference:
http://stackoverflow.com/questions/24586573/docker-error-client-and-server-dont-have-same-version

Post Tags:

No Comment to " Docker client and server don't have same version "