# import加载镜像
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker import horizon_ddk_docker_image_1.4.9.tar.gz
sha256:9d51ffcd5afbe742239ed5da19602b78d13c5a48e7791e2b49888c3259f5bbc0
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
9d51ffcd5afb 5 seconds ago 5.44GB
hello-world latest d1165f221234 5 months ago 13.3kB
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker tag 9d51ffcd5afb horizon:1.4.9
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
horizon 1.4.9 9d51ffcd5afb 32 seconds ago 5.44GB
hello-world latest d1165f221234 5 months ago 13.3kB
# run image
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker run --name=zhusong -it 9d51ffcd5afb
docker: Error response from daemon: No command specified.
See ‘docker run --help’.
# run image
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai# docker run --name=zhusong -it 9d51ffcd5afb /bin/bash
docker: Error response from daemon: failed to create shim: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: “/bin/bash”: stat /bin/bash: no such file or directory: unknown.
ERRO[0000] error waiting for container: context canceled
root@zhusong-Lenovo-ThinkBook-15p:/home/zhusong/docker/dockerfile_ai#
请问一下,这个docker镜像是这么加载的吗??? 还是我的使用方式不对,,?出现的这个问题看起来是版本不对的问题,