官方hello-world镜像 tar文件,https://hub.docker.com/_/hello-world 通过 docker pull hello-world && docker save -o hello-world_202005.tar hello-world 命令生成该文件。文件名加上日期仅仅是记录作用,镜像tag是latest,即 hello-world:latest。 执行 docker load -i hello-world_202005.tar 加载镜像。 执行 docker run hello-world 运行容器。