在Docker容器中安装vim也非常简单,只需要执行以下命令: RUNapt-getupdate&&apt-getinstall-yvim 1. 上述命令将使用apt-get包管理器更新软件包列表,并安装vim工具。 示例代码 以下是一个示例的Dockerfile,其中包含了安装curl、telnet和vim工具的命令: FROMubuntu:latestRUNapt-get update && apt-get install -y cur...
EOF #安装 curl scp telnet vim apk update && apk add curl openssh-client busybox-extras vim
apt-get update && apt-get install -y curl telnet vim Alpine基础镜像 #先添加阿里源 cat > /etc/apk/repositories << EOF http://mirrors.aliyun.com/alpine/v3.12/main/ http://mirrors.aliyun.com/alpine/v3.12/community EOF #安装 curl scp telnet vim apk update && apk add curl openssh-clien...
#安装 curl scp telnet vim apk update && apk add curl openssh-client busybox-extras vim 转自:https://www.cnblogs.com/liucx/p/13213825.html
docker容器中安装vim 、telnet、ifconfig、ping、curl命令 2019-12-10 18:44 −### 一、在使用docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found 问题:apt-get install vim安装vim 命令时,提示:如下内容 Reading package lists... Done Building de... ...
Docker容器中安装curl、telnet、vim基础工具 #因在容器中排查故障需要,安装基础工具 # 查看系统版本: cat /etc/os-releas Debian基础镜像 #先添加163源 tee /etc/apt/sources.list << EOF deb http://mirrors.163.com/debian/ jessie main non-ffree contrib...