docker无法使用curl命令,curl: command not found。docker内部无法使用telnet,bash: telnet: command not found 电脑版发表于:2022/12/27 16:29 ### docker无法使用curl命令,curl: command not found docker内部使用这种方式安装curl ``` apt-get update apt install curl -y ``` ### docker内部无法使用telnet,bash: telnet: command not found ``` apt-get update apt install telnet -y ``` ### yum: command not found docker内部可以尝试以下使用这种方式安装yum ``` apt install yum -y ``` linux宿主机中,可以尝试下面的方式安装 ``` yum install telnet ```