在docker 1.3之后,也可以通过docker exec 命令在容器内部额外启动新进程。在容器内运行的进程包括两种类型:后台任务和交互式任务。
1、在容器内部增加后台任务
docker exec -d daemon_dave touch /etc/wdf_bak
-d 表示后台运行 后面跟的是容器命中, 然后跟要运行的命令。 上面例子的意思就是在容器daemon_dave 内部创建了一个空文件/etc/wdf_bak,创建这个这文件在哪呢,怎么看呢。下图可以证明文件是在容器内,而不是宿主机内。
[root@VM-0-16-centos ~]# docker exec daemon_dave ll /etc/wdf_bak
OCI runtime exec failed: exec failed: container_linux.go:349: starting container process caused "exec: \"ll\": executable file not found in $PATH": unknown
[root@VM-0-16-centos ~]# docker exec daemon_dave ls -l /etc/wdf_bak
-rw-r--r-- 1 root root 0 Sep 27 06:58 /etc/wdf_bak
[root@VM-0-16-centos ~]#
[root@VM-0-16-centos ~]# ls -l /etc/wdf_bak
ls: cannot access /etc/wdf_bak: No such file or directory
2、在容器内创建交互式任务
[root@VM-0-16-centos ~]# docker exec -t -i daemon_dave /bin/bash
root@116db8f4f780:/# ls -l /etc/wdf_bak
-rw-r--r-- 1 root root 0 Sep 27 06:58 /etc/wdf_bak
和创建交互式容器时一样要使用-i 和-t 参数创建TTY并捕捉STDIN。当创建了交互式任务附着进入这个容器以后,就可查看容器的信息了,比如上个例子创建的空文件,这个时候直接执行ls -l /etc/wdf_bak 就行了。