我无法理解某件事:
docker run -d ubuntu
使用docker ps
的时间非常短暂,我能够看到:
bcf2c7153526 ubuntu "/bin/bash" 4 seconds ago Up Less than a second pensive_jepsen
为什么选择/bin/bash
命令?毕竟我没有选择它。
答案 0 :(得分:1)
在Dockerfile
图片的ubuntu
中定义。
# overwrite this with 'CMD []' in a dependent Dockerfile
CMD ["/bin/bash"]