标签:out 打开 active 创建 int 启动 tle ima echo
一、启动容器
输出hello world
docker run ubuntu echo "hello world"
启动交互式容器
docker run -i -t image /bin/bash
-i --INTERACTIVE=TRUE|fasle 默认是false, docker容器始终为用户打开标准输入进程
-t --tty=true|false 默认为false 为创建的容器分配一个伪tty终端,新创建的容器才能提供交互式的容器,
安装ubtuntu
参考http://ju.outofmemory.cn/entry/362821
二、
标签:out 打开 active 创建 int 启动 tle ima echo
原文地址:https://www.cnblogs.com/huay/p/11156438.html