docker运行hello world镜像
时间: 2023-09-03 11:10:33 浏览: 87
nodejs-hello-world-docker:这是一个 docker 镜像,包含一个简单的 nodeJS hello world
可以按照以下步骤来运行 hello-world 镜像:
1. 打开终端或命令行窗口。
2. 输入以下命令来下载 hello-world 镜像:
```
docker pull hello-world
```
3. 下载完成后,输入以下命令来运行镜像:
```
docker run hello-world
```
4. 如果一切正常,您应该会看到以下输出:
```
Hello from Docker!
This message shows that your installation appears to be working correctly.
...
```
这表示您已成功运行 hello-world 镜像。
阅读全文