? ~ docker --help
images List images
......
? ~ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
# 为空
? ~ docker search hello
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
hello-world Hello World! (an example of minimal Dockeriz… 1174
......
? ~ docker pull hello-world
Using default tag: latest
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:8e3114318a995a1ee497790535e7b88365222a21771ae7e53687ad76563e8e76
Status: Downloaded newer image for hello-world:latest
docker.io/library/hello-world:latest
? ~ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest bf756fb1ae65 3 months ago 13.3kB
? ~ docker container run hello-world
Hello from Docker!
This message shows that your installation appears to be working correctly.
......
https://www.ruanyifeng.com/blog/2018/02/docker-tutorial.html
原文:https://www.cnblogs.com/mysticbinary/p/12769795.html