Home > Article > Operation and Maintenance > How to check the specific version number in docker
You can use the docker version command to view the specific version number.
docker version: Display Docker version information.
Syntax
docker version [OPTIONS]
OPTIONS description:
-f: Specify the template file for the return value.
Instance
Display Docker version information.
$ docker versionClient: Version: 1.8.2 API version: 1.20 Go version: go1.4.2 Git commit: 0a8c2e3 Built: Thu Sep 10 19:19:00 UTC 2015 OS/Arch: linux/amd64Server: Version: 1.8.2 API version: 1.20 Go version: go1.4.2 Git commit: 0a8c2e3 Built: Thu Sep 10 19:19:00 UTC 2015 OS/Arch: linux/amd64
For more related tutorials, please pay attention to the docker tutorial column on the PHP Chinese website.
The above is the detailed content of How to check the specific version number in docker. For more information, please follow other related articles on the PHP Chinese website!