docker centos7 nodejs 编译安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker centos7 nodejs 编译安装相关的知识,希望对你有一定的参考价值。

前言

nodejs 编译时间太长,自己构建一个基于Centos7的 nodejs 环境docker 镜像,方便使用

安装

docker pull centos
docker run --privileged --name centos -h Centos7 -d -i -v /Volumes/MacSoft/Downloads:/opt/soft -t centos /usr/sbin/init
docker exec -it centos /bin/bash

编译安装

yum -y install --nogpgcheck gcc gcc-c++ make wget
wget https://npm.taobao.org/mirrors/node/v9.0.0/node-v9.0.0.tar.gz
tar xvf node-v9.0.0.tar.gz
cd node-v9.0.0
./configure
make && make install

保存并使用

#保存镜像
docker commit -a "mir355" -m "centos7 nodejs 9.0.0" centos nodejs9
docker tag nodejs9 127.0.0.1:5000/nodejs9
docker push 127.0.0.1:5000/nodejs9
docker run -d  -h nodejs --name nodejs -v /Volumes/MacSoft/Downloads:/opt/soft  127.0.0.1:5000/nodejs9
docker exec -it nodejs /bin/bash

以上是关于docker centos7 nodejs 编译安装的主要内容,如果未能解决你的问题,请参考以下文章

centos6.5 安装docker方法

Linux|Docker镜像|以centos7为基础镜像制作一个目标镜像

CentOS7 编译安装nodejs,配置环境变量记录

如何通过docker编译vue项目

使用VMware12在CentOS7上部署docker实例

centos7.x下环境搭建—nodejs安装