概述
- 本文记录在“玩”docker过程中的一些过程或者总结,比较杂乱,待空了进行整理。
docker run -it [image]
- docker run 中,我们使用了-it这两个参数,对容器的影响。使用docker inspect查看容器配置信息
- 不带参数:
"AttachStdin": false,
"AttachStdout": true,
"AttachStderr": true,
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"AttachStdin": true,
"AttachStdout": true,
"AttachStderr": true,
"Tty": false,
"OpenStdin": true,
"StdinOnce": true,
"AttachStdin": true,
"AttachStdout": true,
"AttachStderr": true,
"Tty": false,
"OpenStdin": true,
"StdinOnce": true,
- 总结:
从配置文件来看,参数 i 为是否附加stdin
参数 t 为是否建立一个tty