docker 镜像我通常会使用官方的,但是也有例外,比如php-fpm、ffmpeg镜像,这些模块化的应用通常满足不了所有场景,因为官方发布的镜像无法把所有支持的模块都编译到镜像里,因此docker提供了一种自建镜像的方法dockerfile
,它类似脚本,按照一定语法编写完成后,在使用docker build
命令将其构建成需要的镜像。
示例:
- 基于cetnos7官方镜像构建一个php-fpm镜像,使用源码安装编译
- 创建dockerfile,需要将php-5.6.36.tar.gz 源码包与dockerfile放在同一级目录下
cat <<eof> php56-dockerfile
from centos
copy php-5.6.36.tar.gz /root/
run curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo && \
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo && \
yum -y install php-mcrypt libmcrypt libmcrypt-devel make gcc-c++ \
libxml2-devel openssl-devel libcurl-devel libjpeg.x86_64 \
libpng.x86_64 freetype libjpeg-devel libpng-devel.x86_64 \
freetype-devel.x86_64 libjpeg-turbo-devel libmcrypt-devel \
mysql-devel bzip2 bzip2-devel gd ttf freetype && \
cd /root/ && tar xvf php-5.6.36.tar.gz && \
cd php-5.6.36 && \
./configure --prefix=/php --with-config-file-path=/php/etc/ \
--enable-mysqlnd --with-gd --enable-gd-native-ttf \
--with-bz2 --with-curl --enable-fpm --enable-sockets \
--with-jpeg-dir=/php/local --with-png-dir=/php \
--with-freetype-dir=/php --with-iconv-dir=/php \
--enable-mbstring --enable-calendar --with-gettext \
--with-libxml-dir=/php --with-zlib --enable-xml \
--with-libdir=lib64 --enable-bcmath --with-openssl \
--enable-dom --with-mysql=mysqlnd --with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd --with-mcrypt && \
make -j`grep -c processor /proc/cpuinfo` > /dev/null && \
make install && \
make clean && \
ln -s /php/bin/* /usr/bin/ && \
ln -s /php/sbin/* /usr/bin/ && \
cp php.ini-production /php/etc/php.ini && \
cp /php/etc/php-fpm.conf.default /php/etc/php-fpm.conf && \
yum -y remove make gcc-c++ && \
yum clean all
expose 9000
cmd ["php-fpm", "--nodaemonize"]
eof
• 构建命令
docker build -t php-fpm:5.6-centos7 -f php56-dockerfile ./
注意:构建过程中会报错,比如权限问题、文件或目录不存在,根据提示查找错误位置并修改dockerfile内容,然后重新构建即可
疑问
- 为什么使用cnetos镜像作为dockerfile的base image?
因为我个人比较熟悉操作centos系统,base image并非强制,你可以替换自己喜欢的base image
- 为什么源码安装php-fpm?
扩展php模块时方便,并且国内centos系统文档多
- 为什么构建的镜像特别大,一般都在800M~1000M之间?
这取决于base image (基础镜像),容器的设计就是每当要修改base image时,先将base image复制一层,然后再将修改操作应用到新复制的镜像层中
比如docker官方主推ubantu作为base image,其镜像大小只有100M左右,如果你dockerfile中只写run echo "test" > /opt/test.txt
你会发现构建完成后的镜像要比base image大了好几十兆,其实你只是添加了一个几KB的文件。
- 什么是基础镜像(base image)
简单来说,基础镜像就是没有From或者FROM scratch开头的Dockerfile所构建出来的镜像。比如alpine,这个很小的linux镜像目前只有4M左右
据说docker官方要使用alpine作为官方专用base image,但目前官方未公布。