Question - How to Check for Docker Client and Docker Server version?
Answer -
We can check the docker version using the command docker version [options]. If we do not give any options, then Docker gives all the version related information about client and server. For example, to get only the server version, use:
$ docker version --format '{{.Server.Version}}'