docker.io/initobject/tengine:alphine-3.14 linux/amd64

docker.io/initobject/tengine:alphine-3.14 - 国内下载镜像源 浏览次数:12
源镜像 docker.io/initobject/tengine:alphine-3.14
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14
镜像ID sha256:2716568b69915d7ac59eacdfed51cba2a5fb79f602f194ef53c329ec7960fe4b
镜像TAG alphine-3.14
大小 63.38MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口
工作目录
OS/平台 linux/amd64
浏览量 12 次
贡献者
镜像创建 2022-01-14T04:11:51.259381062Z
同步时间 2026-01-09 11:35
更新时间 2026-01-09 21:12
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin TENGINE_VERSION=2.3.3 CONFIG= --user=nginx --group=nginx --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --with-http_ssl_module --with-http_gzip_static_module --with-http_gunzip_module --with-http_addition_module --with-http_dav_module --with-http_realip_module --with-http_v2_module --with-http_stub_status_module --with-http_sub_module --with-http_xslt_module=dynamic --with-http_flv_module --with-http_mp4_module --with-http_degradation_module --with-http_random_index_module --with-http_secure_link_module --with-http_auth_request_module --with-file-aio --with-mail --with-mail_ssl_module --with-compat --with-pcre --with-pcre-jit --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --add-module=modules/ngx_http_upstream_check_module --add-module=modules/ngx_http_upstream_session_sticky_module --add-module=modules/ngx_http_upstream_consistent_hash_module --add-module=modules/headers-more-nginx-module-0.33 TZ=Asia/Shanghai
镜像标签
wangkun_king@live.com: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14  docker.io/initobject/tengine:alphine-3.14

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14  docker.io/initobject/tengine:alphine-3.14

Shell快速替换命令

sed -i 's#initobject/tengine:alphine-3.14#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14  docker.io/initobject/tengine:alphine-3.14'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14  docker.io/initobject/tengine:alphine-3.14'

镜像构建历史


# 2022-01-14 12:11:51  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2022-01-14 12:11:51  57.77MB 执行命令并创建新的镜像层
RUN /bin/sh -c addgroup -S nginx     && adduser -D -S -h /var/cache/nginx -s /sbin/nologin -G nginx nginx     && adduser -u 82 -D -S -G www-data www-data     && apk add --no-cache --virtual .build-deps         gcc         geoip         geoip-dev         libxslt-dev         libxml2-dev         gd-dev         libc-dev         make         openssl-dev         pcre-dev         zlib-dev         linux-headers         curl     && curl "http://tengine.taobao.org/download/tengine-$TENGINE_VERSION.tar.gz" -o tengine.tar.gz     && mkdir -p /usr/src     && tar -zxC /usr/src -f tengine.tar.gz     && rm tengine.tar.gz     && cd ../../../     && cd /usr/src/tengine-$TENGINE_VERSION     && curl -L "https://github.com/openresty/headers-more-nginx-module/archive/v0.33.tar.gz" -o more.tar.gz     && tar -zxC /usr/src/tengine-$TENGINE_VERSION/modules -f more.tar.gz 	&& rm  more.tar.gz 	&& ls -l /usr/src/tengine-$TENGINE_VERSION/modules     && ./configure $CONFIG --with-debug     && make -j$(getconf _NPROCESSORS_ONLN)     && mv objs/nginx objs/nginx-debug     && mv objs/ngx_http_xslt_filter_module.so objs/ngx_http_xslt_filter_module-debug.so     && mv objs/ngx_http_image_filter_module.so objs/ngx_http_image_filter_module-debug.so     && mv objs/ngx_http_geoip_module.so objs/ngx_http_geoip_module-debug.so     && mv objs/ngx_stream_geoip_module.so objs/ngx_stream_geoip_module-debug.so     && ./configure $CONFIG     && make -j$(getconf _NPROCESSORS_ONLN)     && make install     && rm -rf /etc/nginx/html/     && mkdir /etc/nginx/conf.d/     && mkdir -p /usr/share/nginx/html/     && install -m644 html/index.html /usr/share/nginx/html/     && install -m644 html/50x.html /usr/share/nginx/html/     && install -m755 objs/nginx-debug /usr/sbin/nginx-debug     && install -m755 objs/ngx_http_xslt_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_xslt_filter_module-debug.so     && install -m755 objs/ngx_http_image_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so     && install -m755 objs/ngx_http_geoip_module-debug.so /usr/lib/nginx/modules/ngx_http_geoip_module-debug.so     && install -m755 objs/ngx_stream_geoip_module-debug.so /usr/lib/nginx/modules/ngx_stream_geoip_module-debug.so     && ln -s ../../usr/lib/nginx/modules /etc/nginx/modules     && strip /usr/sbin/nginx*     && strip /usr/lib/nginx/modules/*.so     && rm -rf /usr/src/tengine-$NGINX_VERSION     && apk add --no-cache --virtual .gettext gettext     && mv /usr/bin/envsubst /tmp/     && runDeps="$(                 scanelf --needed --nobanner --format '%n#p' /usr/sbin/nginx /usr/lib/nginx/modules/*.so /tmp/envsubst                         | tr ',' '\n'                         | sort -u                         | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }'     )"     && apk add --no-cache --virtual .nginx-rundeps $runDeps     && apk del .build-deps     && apk del .gettext     && mv /tmp/envsubst /usr/local/bin/     && rm -rf /usr/src/nginx-$NGINX_VERSION     && apk add --no-cache tzdata     && echo "${TZ}" > /etc/timezone     && ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime     && ln -sf /dev/stdout /var/log/nginx/access.log     && ln -sf /dev/stderr /var/log/nginx/error.log # buildkit
                        
# 2022-01-14 12:11:51  0.00B 设置环境变量 TZ
ENV TZ=Asia/Shanghai
                        
# 2022-01-14 12:11:51  0.00B 设置环境变量 CONFIG --user --group --prefix --sbin-path --modules-path --conf-path --lock-path --pid-path --error-log-path --http-log-path --http-client-body-temp-path --http-proxy-temp-path --http-fastcgi-temp-path --http-uwsgi-temp-path --http-scgi-temp-path --with-http_xslt_module --with-stream_geoip_module --with-http_image_filter_module --with-http_geoip_module --add-module --add-module --add-module --add-module
ENV CONFIG=        --user=nginx         --group=nginx         --prefix=/etc/nginx         --sbin-path=/usr/sbin/nginx         --modules-path=/usr/lib/nginx/modules         --conf-path=/etc/nginx/nginx.conf         --lock-path=/var/lock/nginx.lock         --pid-path=/var/run/nginx.pid         --error-log-path=/var/log/nginx/error.log         --http-log-path=/var/log/nginx/access.log         --http-client-body-temp-path=/var/cache/nginx/client_temp         --http-proxy-temp-path=/var/cache/nginx/proxy_temp         --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp         --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp         --http-scgi-temp-path=/var/cache/nginx/scgi_temp         --with-http_ssl_module         --with-http_gzip_static_module         --with-http_gunzip_module         --with-http_addition_module         --with-http_dav_module         --with-http_realip_module         --with-http_v2_module         --with-http_stub_status_module         --with-http_sub_module         --with-http_xslt_module=dynamic         --with-http_flv_module         --with-http_mp4_module         --with-http_degradation_module         --with-http_random_index_module         --with-http_secure_link_module         --with-http_auth_request_module         --with-file-aio         --with-mail         --with-mail_ssl_module         --with-compat         --with-pcre         --with-pcre-jit         --with-threads         --with-stream         --with-stream_ssl_module         --with-stream_ssl_preread_module         --with-stream_geoip_module=dynamic         --with-http_slice_module         --with-http_image_filter_module=dynamic         --with-http_geoip_module=dynamic         --add-module=modules/ngx_http_upstream_check_module         --add-module=modules/ngx_http_upstream_session_sticky_module         --add-module=modules/ngx_http_upstream_consistent_hash_module         --add-module=modules/headers-more-nginx-module-0.33         
                        
# 2022-01-14 12:11:51  0.00B 设置环境变量 TENGINE_VERSION
ENV TENGINE_VERSION=2.3.3
                        
# 2022-01-14 12:11:51  0.00B 添加元数据标签
LABEL maintainer=wangkun_king@live.com
                        
# 2021-11-13 01:19:45  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2021-11-13 01:19:44  5.61MB 
/bin/sh -c #(nop) ADD file:762c899ec0505d1a32930ee804c5b008825f41611161be104076cba33b7e5b2b in / 
                        
                    

镜像信息

{
    "Id": "sha256:2716568b69915d7ac59eacdfed51cba2a5fb79f602f194ef53c329ec7960fe4b",
    "RepoTags": [
        "initobject/tengine:alphine-3.14",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine:alphine-3.14"
    ],
    "RepoDigests": [
        "initobject/tengine@sha256:c9a17a54bc448fdaa4db91c2e7334866a167ee6f32feb6e4e8fa67b493cc9f3d",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/initobject/tengine@sha256:19b8a893194df6916a94cabec267e21c9cf8529e8daa579408f47f861e8d89cb"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2022-01-14T04:11:51.259381062Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "TENGINE_VERSION=2.3.3",
            "CONFIG=        --user=nginx         --group=nginx         --prefix=/etc/nginx         --sbin-path=/usr/sbin/nginx         --modules-path=/usr/lib/nginx/modules         --conf-path=/etc/nginx/nginx.conf         --lock-path=/var/lock/nginx.lock         --pid-path=/var/run/nginx.pid         --error-log-path=/var/log/nginx/error.log         --http-log-path=/var/log/nginx/access.log         --http-client-body-temp-path=/var/cache/nginx/client_temp         --http-proxy-temp-path=/var/cache/nginx/proxy_temp         --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp         --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp         --http-scgi-temp-path=/var/cache/nginx/scgi_temp         --with-http_ssl_module         --with-http_gzip_static_module         --with-http_gunzip_module         --with-http_addition_module         --with-http_dav_module         --with-http_realip_module         --with-http_v2_module         --with-http_stub_status_module         --with-http_sub_module         --with-http_xslt_module=dynamic         --with-http_flv_module         --with-http_mp4_module         --with-http_degradation_module         --with-http_random_index_module         --with-http_secure_link_module         --with-http_auth_request_module         --with-file-aio         --with-mail         --with-mail_ssl_module         --with-compat         --with-pcre         --with-pcre-jit         --with-threads         --with-stream         --with-stream_ssl_module         --with-stream_ssl_preread_module         --with-stream_geoip_module=dynamic         --with-http_slice_module         --with-http_image_filter_module=dynamic         --with-http_geoip_module=dynamic         --add-module=modules/ngx_http_upstream_check_module         --add-module=modules/ngx_http_upstream_session_sticky_module         --add-module=modules/ngx_http_upstream_consistent_hash_module         --add-module=modules/headers-more-nginx-module-0.33         ",
            "TZ=Asia/Shanghai"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "maintainer": "wangkun_king@live.com"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 63379888,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/cdb33ce71924a1d285531775a8697c73226c013ceaad28ca4d3e1a635b342570/diff",
            "MergedDir": "/var/lib/docker/overlay2/e7961006f23ca637659d7d7c914059c086d7692da93411884bc0335ff02e077b/merged",
            "UpperDir": "/var/lib/docker/overlay2/e7961006f23ca637659d7d7c914059c086d7692da93411884bc0335ff02e077b/diff",
            "WorkDir": "/var/lib/docker/overlay2/e7961006f23ca637659d7d7c914059c086d7692da93411884bc0335ff02e077b/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:1a058d5342cc722ad5439cacae4b2b4eedde51d8fe8800fcf28444302355c16d",
            "sha256:eea8748924e732f67260f7d54ca01b1ad5cfcc48096836fb78a274c9b52bb3e9"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-09T11:35:16.859288205+08:00"
    }
}

更多版本

docker.io/initobject/tengine:alphine-3.14

linux/amd64 docker.io63.38MB2026-01-09 11:35
11

docker.io/initobject/tengine:alphine-3.14

linux/arm64 docker.io68.09MB2026-01-09 11:35
10