Export a docker image as an archive

The docker save command can be used to accomplish this
save -o <exported_name>.tar -c <container-name>

Checks docker client and server version?

Give all version information of the client and server
docker version.

Obtain full version information for the client and server.
docker version --format '{{.Server.Version}}'

 

 


Related Question