最佳答案
我正在尝试创建一个用于设置 docker 容器的 shell 脚本:
#!bin/bash
docker run -t -i -p 5902:5902 --name "mycontainer" --privileged myImage:new /bin/bash
运行此脚本文件将在新调用的 bash 中运行容器。
现在我需要运行一个脚本文件(test.sh) ,它已经在上面给定的 shell 脚本的容器中了。(例如: cd/path/to/test.sh & & 。/test.sh) 怎么做?