Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
运行exec命令返回随机测试,如 ^[[50;5R. 在 Windows 中运行相同的命令时,它只是卡住了,我无法输入任何内容。需要做Ctrl+c退出它。
exec
您需要运行 docker exec -it container_name/id 命令。例如:docker exec -it ubuntu /bin/bash i 允许您在容器内进行交互/输入,而 t 允许您打开容器的 tty 控制台。
docker exec -it ubuntu /bin/bash