约 340 字 预计阅读 2 分钟
构建自己的centos Docker镜像
编写Dockerfile
- 注意这里需要把需要的包(protobuf2.6.1)先拷贝到相应的目录tools中去
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# 基础镜像,这里选用centos
FROM centos:7.9.2009
# 镜像所有者
MAINTAINER cfanzp "cfan.zp@qq.com"
# 1.准备工作创建文件夹
RUN \
mkdir -p /data/tools \
&& mkdir /data/log
# 复制文件,将要安装的jdk、redis及nginx安装包复制到镜像内
#COPY redis.conf /etc/redis/redis.conf
#COPY supervisord.conf /etc/supervisord.conf
RUN yum -y install epel-release
RUN yum -y install htop
#安装vim编辑器
RUN yum -y install vim
#安装gcc等编译环境
RUN yum -y install automake libtool make
RUN yum -y install git tmux gcc gcc-c++ openssl-devel autoconf automake
RUN yum -y install libtool readline-devel zlib-devel unzip
RUN yum -y install the_silver_searcher lrzsz iptables-services
# skynet console
RUN yum -y install rlwrap nc
#gcc11
RUN yum -y install centos-release-scl
RUN yum -y install devtoolset-11-gcc*
RUN echo "source /opt/rh/devtoolset-11/enable" >>/etc/profile
RUN source /etc/profile
## install protobuf
COPY ./tools/protobuf-2.6.1-test1.5.0.tar.gz /data/tools/
RUN cd /data/tools/ \
&& tar -xzvf protobuf-2.6.1-test1.5.0.tar.gz \
&& cd protobuf-2.6.1-test1.5.0 \
&& ./autogen.sh \
&& ./configure \
&& make && make install
# 安装 sshd 修改密码
RUN \
yum install passwd openssl openssh-server -y \
&& ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' \
&& ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' \
&& ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key -N '' \
&& sed -i "s/#UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config \
&& sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config \
&& echo 123456 | passwd --stdin root \
&& echo root:123456|chpasswd \
&& rm -rf /var/cache/yum/**
# 安装supervisor,这个工具会提供一个主线程,避免出现由于后台应用无法启动而造成镜像无法启动
#RUN \
# yum install -y python-setuptools \
# && easy_install supervisor
#清除yum缓存
#RUN \
# rm -rdf /var/cache/yum/**
#配置jdk环境变量
#ENV JAVA_HOME=/opt/tools/jdk1.8.0_191
#ENV CLASSPATH=$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
#ENV PATH=$PATH:$JAVA_HOME/bin
#配置系统编码
#ENV LANG en_US.utf8
#CMD /usr/bin/supervisord -c /etc/supervisord.conf
#CMD /usr/sbin/init
|
构建镜像
1
|
docker build -t centos_dev:latest .
|
启动容器
1
|
docker run -idt --name centos_dev1 centos_dev:latest /bin/bash
|