Files
nexus/wiki/entities/hello-world.md
2026-04-22 04:03:04 +08:00

825 B
Raw Blame History

title, tags, date
title tags date
hello-world (Docker Test Image)
docker
test
verification
2026-04-22

hello-world (Docker 官方测试镜像)

Definition

hello-world 是 Docker 官方提供的轻量级测试镜像,用于验证 Docker Engine 是否正确安装。运行成功后输出欢迎信息并退出。

Usage

# 验证安装(需 sudo
sudo docker run hello-world

# 无 sudo 验证(用户加入 docker 用户组后)
docker run hello-world

Expected Output

Hello from Docker!
This message shows that your installation appears to be working correctly.
...