Docker 容器中只存在基本的软件,有时候需要我们自行安装下,安装方式如下:
# 进入容器 docker exec -it -uroot 容器名 /bin/bash # 更新资源 apt update # 安装 vim apt install -y vim