我有以下docker-compose
文件:
version: '2'
services:
ubuntu:
image: 'ubuntu:16.04'
ports:
- '22:22'
启动时,容器似乎崩溃,以下是我看到的日志:
Attaching to playground_ubuntu_1
ubuntu_1 | Error grabbing logs: EOF
playground_ubuntu_1 exited with code 0
我的主机操作系统是带有Docker version 17.12.0-ce, build c97c6d6
的Ubuntu 16.04。
我的所有其他容器似乎都正常启动,但这个容器在启动时无法启动。
答案 0 :(得分:3)
日志playground_ubuntu_1 exited with code 0
中的退出状态显示其预期。为了制造一个容器和运行很长时间,您需要为容器提供/定义前台进程。我暂时编辑了你的撰写文件 -
version: '2'
services:
ubuntu:
image: 'ubuntu:16.04'
ports:
- '22:22'
command: "tail -f /dev/null"
现在你运行它 -
$ docker-compose up -d && docker ps
你的容器已经启动了现在跑。
答案 1 :(得分:3)
这很正常。当您启动容器时,只要容器内的主进程仍在运行,它就会运行。
使用Dockerfile中的CMD
命令指定此过程。 ubuntu映像没有CMD
,因为它旨在用作其他docker镜像的构建块。
因此,当您在未指定命令的情况下运行此映像时,它会从0退出代码中退出成功。
如果您希望此图像仅用于测试,则可以指定一个可以保持生命的命令。
version: '2'
services:
ubuntu:
image: 'ubuntu:16.04'
ports:
- '22:22'
command: "tail -f /dev/null"
答案 2 :(得分:1)
您很可能已在主机上使用端口22
。尝试将容器22
端口绑定到主机上的另一个端口,例如2222
version: '2'
services:
ubuntu:
image: 'ubuntu:16.04'
ports:
- '2222:22'