我可以附加到一个docker进程,但Ctrl+C不能从它分离。退出基本上停止了进程。

让流程运行,偶尔附加到流程上进行一些更改,然后再分离的推荐工作流是什么?


当前回答

当没有其他工作,打开一个新的终端然后:

$ ps aux | grep attach
username  <pid_here>    ..............  0:00 docker attach <CONTAINER_HASH_HERE>
username  <another_pid> ..............  0:00 grep --color=auto attach
$ kill -9 <pid_here>

其他回答

要从正在运行的容器中分离,请使用^P^Q(按住Ctrl,按P,按Q,释放Ctrl)。

这里有一个问题:这只在容器同时以-t和-i开始时才有效。

如果你有一个正在运行的容器,启动时没有这些选项中的一个(或两个),并且你使用docker attach附加,你需要找到另一种方法来分离。^C可以工作,也可以杀死整个容器,这取决于你选择的选项和正在运行的程序。你得自己试验一下。

Another catch: Depending on the programs you're using, your terminal, shell, SSH client, or multiplexer could be intercepting either ^P or ^Q (usually the latter). To test whether this is the issue, try running or attaching with the --detach-keys z argument. You should now be able to detach by pressing z, without any modifiers. If this works, another program is interfering. The easiest way to work around this is to set your own detach sequence using the --detach-keys argument. (For example, to exit with ^K, use --detach-keys 'ctrl-k'.) Alternatively, you can attempt to disable interception of the keys in your terminal or other interfering program. For example, stty start '' or stty start undef may prevent the terminal from intercepting ^Q on some POSIX systems, though I haven't found this to be helpful.

当没有其他工作,打开一个新的终端然后:

$ ps aux | grep attach
username  <pid_here>    ..............  0:00 docker attach <CONTAINER_HASH_HERE>
username  <another_pid> ..............  0:00 grep --color=auto attach
$ kill -9 <pid_here>

如果你只需要docker进程在后台运行,你可以使用

Ctrl + Z

注意,这不是一个真正的分离,它会带来性能损失。 (您可以使用bg命令将其返回到前台)。

另一种选择是关闭你的终端,如果你不再需要它。

我发现关于附加和分离的文档有点复杂。

我尝试了不同的选项来启动一个容器并从另一个终端连接到它。下表总结了结果:

其列含义如下:

-d -是docker run -d是否使用的选项 ——sig-proxy -是选项docker attach——sig-proxy=true|false used to not ——no-stdin -是docker attach[——no-stdin]用于not的选项 键- docker是否发送输入键到容器化的应用程序 ^C -当用户按Ctrl+C时会发生什么 ^P ^Q -当用户按下Ctrl+P Ctrl+Q时会发生什么

有一些发现:

attachment behavior doesn't depend on -d option but from -i and -t you can consider attach columns either a connection to a container from another terminal (e.g. docker attach --sig-proxy=false and you may vary connection options) or from the current terminal (but you can't vary connection options; --sig-proxy=true) detachment depends on running options and can be done in three ways: docker run [-i|-t] and connect from another terminal by docker attach --sig-proxy=false CONT -> press Ctrl+C docker run -it and connect from another terminal by docker attach -> press Ctrl+P Ctrl+Q docker run -it and connect from another terminal by docker attach --no-stdin -> press Ctrl+C

(当然,您应该为命令提供其他必要的参数,如容器名称或图像)

附注:我用-i和-t尝试了不同的场景(只有一个),但没有得到行为上的差异。我看到@ken-cochrane提供了以下内容:

docker run -i→不能与^P^Q分离;将中断stdin

但我没有成功地复制这个。

要从容器中分离,只需按住Ctrl并按P + Q。

附加到你使用的正在运行的容器:

$ docker container attach "container_name"