docker命令中的/bin/bash

docker run -i -t tomcat /bin/bash

中的/bin/bash的作用是因为docker后台必须运行一个进程,否则容器就会退出,在这里表示启动容器后启动bash。

你可能感兴趣的:(docker)