标签:虚拟机 class 基础服务 docker容器 run pre yum 查询 font
前言 : 在一台虚拟机上搭建3个docker容器 作为安装HDP的环境,虚拟机环境centos7.6 docker环境为centos7.6
https://hub.docker.com/_/centos 在此网站查询想要的版本号
yum -y install docker
docker search centos //搜索镜像
docker pull centos:7.6.1810 //从官网拉取镜像
docker images //查看本地镜像
docker ps -a //查看容器
因为是在1台虚拟机搭建3个docker的缘故,所以这次选择的docker 网卡类型为bridge模式 网段为 172.17.0.0/16 网关为172.17.0.1
三台容器的主机名和ip分别为
server 172.17.0.2
agent1 172.17.0.3
agent2 172.17.0.4
※注意点:bridge模式容器ip无法自己指定
开始启动3台容器,如下图
docker run -it -d --name server --network bridge --hostname server docker.io/centos:7.6.1810 /bin/bash
docker ps
进入容器
docker exec -it server /bin/bash
由于这次采用的docker镜像比较小,需要安装一些常用的包,为后续安装提供便利
安装网络工具
yum install net-tools.x86_64
标签:虚拟机 class 基础服务 docker容器 run pre yum 查询 font
原文地址:https://www.cnblogs.com/erlou96/p/12799197.html