docker创建一个centos7环境的镜像
时间: 2023-09-09 10:13:11 浏览: 130
centos7.5docker镜像
1. 下载centos7的镜像文件
```shell
docker pull centos:7
```
2. 启动容器并进入
```shell
docker run -it centos:7 /bin/bash
```
3. 安装需要的软件包
```shell
yum install -y vim wget curl net-tools telnet
```
4. 修改centos7的配置
```shell
# 设置时区为上海
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# 设置默认字符集为UTF-8
echo 'LANG="en_US.UTF-8"' >> /etc/locale.conf
```
5. 打包镜像
```shell
docker commit container_id centos7:latest
```
其中,container_id为上一步启动的容器的ID。
阅读全文