在docker下安装vim提示bash: apt-get: command not found

在docker下安装vim提示bash: apt-get: command not found

本人前几天学习FATE框架,采用了docker安装方式
需要修改docker里面的配置文件,但是没有编辑器
网上的教程直接在docker里面执行

apt-get update
apt-get install vim

提示
bash: apt-get: command not found

(app-root) bash-4.2# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

几经查阅发现系统是ubuntu,但是docker的环境不是,需要用centos的安装命令

yum -y install vim

尝试后成功。

你可能感兴趣的:(docker,linux,容器)