我正在使用以交互方式启动的Docker映像,例如:docker run -it --rm ubuntu bash
我使用的实际图像具有许多复杂的参数,这就是为什么我编写了一个脚本来构造完整的docker run
命令并为我启动它的原因。随着逻辑变得越来越复杂,我想将脚本从bash迁移到Python。
我使用docker-py
准备了运行图像的所有内容。不过,似乎not supported是用于交互式外壳的docker.containers.run
。相反,使用subprocess
似乎合乎逻辑,因此我尝试了以下操作:
import subprocess
subprocess.Popen(['docker', 'run', '-it', '--rm', 'ubuntu', 'bash'])
但这给了我
$ python3 docker_run_test.py
$ unable to setup input stream: unable to set IO streams as raw terminal: input/output error
$
请注意,错误消息出现在与python命令不同的shell提示符中。
如何使python3 docker_run_test.py
等效于运行docker run -it --rm ubuntu bash
?
答案 0 :(得分:1)
我们可以使用吗?
import os
os.system('docker run -it --rm ubuntu bash')
答案 1 :(得分:0)
您可以使用伪终端来读取和写入容器进程
import pty
import sys
import select
import os
import subprocess
pty, tty = pty.openpty()
p = subprocess.Popen(['docker', 'run', '-it', '--rm', 'ubuntu', 'bash'], stdin=tty, stdout=tty, stderr=tty)
while p.poll() is None:
# Watch two files, STDIN of your Python process and the pseudo terminal
r, _, _ = select.select([sys.stdin, pty], [], [])
if sys.stdin in r:
input_from_your_terminal = os.read(sys.stdin.fileno(), 10240)
os.write(pty, input_from_your_terminal)
elif pty in r:
output_from_docker = os.read(pty, 10240)
os.write(sys.stdout.fileno(), output_from_docker)