如何在主机上启动应用程序,以便从正在运行的 docker 容器中读取文件和标准输出?
本质上我想这样做:
docker start containerid
./myapp // This app will *somehow* have access files and stdout generated by the container I just stared.
我该怎么做呢?更具体地说,我想读取 docker 容器中的日志和 stdout,并在其他地方处理这些日志。
我还愿意创建另一个 docker 容器,它可以从另一个容器读取文件和标准输出,但我不知道这是否可行。