Dockerfile构建nginx镜像

一、构建镜像方法:

1、commit命令:commit镜像类似于vm虚拟机的快照。
教程:https://blog.csdn.net/Virgo626249038/article/details/119254784
2、Dockerfile命令:自定义打造适合的镜像。
ps:两个方法具体差异在网上很多对比!


二、Dockerfile入门指令:

指令 使用描述
FROM 构建新镜像基于哪个源,可指定版本号(默认拉取最新)如FROM centos:7、FROM centos7.9
MAINTAINER 维护者信息
RUN 用来执行命令行命令;shell格式: RUN <命令> ,输入在bash环境中的命令即可,一个dockerfile允许使用RUN不得超过127层,所以,使用一次RUN, 使用 ‘ \ ’ 换行,使用‘ && ’执行下一条命令。一般使用此种格式;
COPY 复制文件。格式:COPY <源路径>…<目标路径>
ADD 更高级的复制文件,在COPY的基础上增加了一些功能,如果复制的是压缩包的话,会直接解压,而不需要在使用RUN解压
CMD 容器启动命令,只有最后一个CMD会生效;如CMD /bin/bash 表示用bash启动
ENV 设置环境变量
VOLUME 定义匿名卷
EXPOSE 暴露端口
WORKDIR 指定工作目录。 WORKDIR <工作目录路径>
ENTRYPOINT 指定容器启动时运行该命令,可追加命令

CMD和ENTRYPOINT区别:https://www.bilibili.com/video/BV1og4y1q7M4?p=29

三、实战演示

编辑Dockerfile文件;命名注意使用官方标准Dockerfile

FROM centos 
RUN yum -y install gcc make pcre-devel zlib-devel tar zlib
ADD nginx-1.21.1.tar.gz /usr/src/
RUN cd /usr/src/nginx-1.21.1\
    && mkdir /usr/local/nginx \
    && ./configure --prefix=/usr/local/nginx && make && make install \
    && ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/ \
    && nginx
 
RUN rm -rf /usr/src/nginx--1.21.1
EXPOSE 80
CMD nginx

使用docker build构建

docker build -t mynginx .           ###由于文件命名为Dockerfile则无须使用-f指定

构建完成

Successfully built 074966287c74
Successfully tagged mynginx:latest

运行自定义构建的容器

[root@localhost ~]# docker images
REPOSITORY   TAG       IMAGE ID       CREATED         SIZE
mynginx      latest    074966287c74   2 minutes ago   415MB
centos       latest    300e315adb2f   8 months ago    209MB
[root@localhost ~]# docker run -it -p 80:80 074966287c74 /bin/bash

[root@1d1f879c92d2 /]# 

使用curl测试访问

[root@localhost ~]# curl 192.168.111.97       ###出现下面代码表示能正常访问,如果无法访问进入容器就检查nginx是否已启动

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

你可能感兴趣的:(nginx,运维,linux)