gpt4 book ai didi

Docker 运行不显示任何输出

转载 作者:IT老高 更新时间:2023-10-28 21:20:17 27 4
gpt4 key购买 nike

我在树莓派上安装了 docker(通过 ssh 连接)安装成功。

但运行 docker run hello-world 不会产生任何输出。

注意我第一次收到有关安装图像的其他消息

无法在本地找到图像“hello-world:latest”
最新:从库/hello-world 中提取
ad0f38092cf2:拉取完成
摘要:sha256:e366bc07db5e8a50dbabadd94c2a95d212bc103e3557e47df8a2eebd8bb46309
状态:为 hello-world 下载了更新的图像:最新

但是 hello world 脚本没有实际输出

注意我使用命令 curl -sSL https://get.docker.com | 安装了 docker sh

我也试过以下命令

sudo usermod -aG docker pi
sudo systemctl start docker
sudo docker run hello-world

尝试了以下命令 docker ps -a

CONTAINER ID        IMAGE               COMMAND             CREATED              STATUS                           PORTS               NAMES
734dd8f733d7 hello-world "/hello" About a minute ago Exited (139) 59 seconds ago thirsty_bhaskara

最佳答案

我在 Raspberry Pi 1B+ (armv6l) 上遇到了同样的问题。受@JanDrábek 回答的启发,第一个观察结果是 hello-world 图像确实是支持 ARM 的图像,但只有在使用 hypriot/armhf-hello-world 之后我得到了预期的输出:

$ uname -a
Linux 4.1.19+ #858 Tue Mar 15 15:52:03 GMT 2016 armv6l GNU/Linux
$ docker run hello-world # No output
$ docker image inspect hello-world | grep Architecture # Arch looks right though
"Architecture": "arm",
$ docker run hypriot/armhf-hello-world # This does the job
Hello from Docker.
This message shows that your installation appears to be working correctly.

关于Docker 运行不显示任何输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52233182/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com