docker.io/axizdkr/tengine:alpine3.19.1 linux/amd64

docker.io/axizdkr/tengine:alpine3.19.1 - 国内下载镜像源 浏览次数:11
这个镜像是基于 Docker 的,名为 "Tengine" 的 web 应用容器镜像,提供了一个完整且高效的 web 应用环境,支持多种语言和框架的部署。
源镜像 docker.io/axizdkr/tengine:alpine3.19.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1
镜像ID sha256:b9edf6cfae4ffdf5362facf1f3ef8940716719e7efd049e762eb26e799d2ea0e
镜像TAG alpine3.19.1
大小 89.37MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口
工作目录
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2024-04-12T13:57:56.56424362+03:00
同步时间 2025-08-05 14:36
更新时间 2025-08-06 13:20
开放端口
443/tcp 80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin TENGINE_VERSION=3.1.0 CONFIG= --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --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 --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-mail --with-mail_ssl_module --with-compat --with-file-aio --with-http_v2_module --add-module=modules/ngx_http_upstream_check_module --add-module=modules/headers-more-nginx-module-0.37 --add-module=modules/ngx_http_upstream_session_sticky_module

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1  docker.io/axizdkr/tengine:alpine3.19.1

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1  docker.io/axizdkr/tengine:alpine3.19.1

Shell快速替换命令

sed -i 's#axizdkr/tengine:alpine3.19.1#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2024-04-12 18:57:56  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-04-12 18:57:56  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGTERM
                        
# 2024-04-12 18:57:56  0.00B 声明容器运行时监听的端口
EXPOSE map[443/tcp:{} 80/tcp:{}]
                        
# 2024-04-12 18:57:56  2.40KB 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/nginx.conf # buildkit
                        
# 2024-04-12 18:57:56  81.99MB 执行命令并创建新的镜像层
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                 libc-dev                 make                 openssl-dev                 pcre-dev                 zlib-dev                 linux-headers                 curl                 libxslt-dev                 gd-dev                 geoip-dev         && curl -L "https://github.com/alibaba/tengine/archive/$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 /usr/src/tengine-$TENGINE_VERSION         && curl -L "https://github.com/openresty/headers-more-nginx-module/archive/v0.37.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/                 && apk add --no-cache tzdata         && apk add --no-cache curl ca-certificates         && ln -sf /dev/stdout /var/log/nginx/access.log         && ln -sf /dev/stderr /var/log/nginx/error.log # buildkit
                        
# 2024-04-12 18:54:49  0.00B 设置环境变量 CONFIG --prefix --sbin-path --modules-path --conf-path --error-log-path --http-log-path --pid-path --lock-path --http-client-body-temp-path --http-proxy-temp-path --http-fastcgi-temp-path --http-uwsgi-temp-path --http-scgi-temp-path --user --group --with-http_xslt_module --with-http_image_filter_module --with-http_geoip_module --with-stream_geoip_module --add-module --add-module --add-module
ENV CONFIG=        --prefix=/etc/nginx         --sbin-path=/usr/sbin/nginx         --modules-path=/usr/lib/nginx/modules         --conf-path=/etc/nginx/nginx.conf         --error-log-path=/var/log/nginx/error.log         --http-log-path=/var/log/nginx/access.log         --pid-path=/var/run/nginx.pid         --lock-path=/var/run/nginx.lock         --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         --user=nginx         --group=nginx         --with-http_ssl_module         --with-http_realip_module         --with-http_addition_module         --with-http_sub_module         --with-http_dav_module         --with-http_flv_module         --with-http_mp4_module         --with-http_gunzip_module         --with-http_gzip_static_module         --with-http_random_index_module         --with-http_secure_link_module         --with-http_stub_status_module         --with-http_auth_request_module         --with-http_xslt_module=dynamic         --with-http_image_filter_module=dynamic         --with-http_geoip_module=dynamic         --with-threads         --with-stream         --with-stream_ssl_module         --with-stream_ssl_preread_module         --with-stream_realip_module         --with-stream_geoip_module=dynamic         --with-http_slice_module         --with-mail         --with-mail_ssl_module         --with-compat         --with-file-aio         --with-http_v2_module         --add-module=modules/ngx_http_upstream_check_module         --add-module=modules/headers-more-nginx-module-0.37 	--add-module=modules/ngx_http_upstream_session_sticky_module         
                        
# 2024-04-12 18:54:49  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c rm -rf /var/cache/apk/* &&     rm -rf /tmp/* # buildkit
                        
# 2024-04-12 18:54:49  0.00B 设置环境变量 TENGINE_VERSION
ENV TENGINE_VERSION=3.1.0
                        
# 2024-01-27 08:30:48  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2024-01-27 08:30:48  7.38MB 
/bin/sh -c #(nop) ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in / 
                        
                    

镜像信息

{
    "Id": "sha256:b9edf6cfae4ffdf5362facf1f3ef8940716719e7efd049e762eb26e799d2ea0e",
    "RepoTags": [
        "axizdkr/tengine:alpine3.19.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:alpine3.19.1"
    ],
    "RepoDigests": [
        "axizdkr/tengine@sha256:d852ca38c1f5e51f9758f03f3e458000cd06a4d64acd115f0bea10eda25a818c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine@sha256:d852ca38c1f5e51f9758f03f3e458000cd06a4d64acd115f0bea10eda25a818c"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-04-12T13:57:56.56424362+03:00",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "443/tcp": {},
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "TENGINE_VERSION=3.1.0",
            "CONFIG=        --prefix=/etc/nginx         --sbin-path=/usr/sbin/nginx         --modules-path=/usr/lib/nginx/modules         --conf-path=/etc/nginx/nginx.conf         --error-log-path=/var/log/nginx/error.log         --http-log-path=/var/log/nginx/access.log         --pid-path=/var/run/nginx.pid         --lock-path=/var/run/nginx.lock         --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         --user=nginx         --group=nginx         --with-http_ssl_module         --with-http_realip_module         --with-http_addition_module         --with-http_sub_module         --with-http_dav_module         --with-http_flv_module         --with-http_mp4_module         --with-http_gunzip_module         --with-http_gzip_static_module         --with-http_random_index_module         --with-http_secure_link_module         --with-http_stub_status_module         --with-http_auth_request_module         --with-http_xslt_module=dynamic         --with-http_image_filter_module=dynamic         --with-http_geoip_module=dynamic         --with-threads         --with-stream         --with-stream_ssl_module         --with-stream_ssl_preread_module         --with-stream_realip_module         --with-stream_geoip_module=dynamic         --with-http_slice_module         --with-mail         --with-mail_ssl_module         --with-compat         --with-file-aio         --with-http_v2_module         --add-module=modules/ngx_http_upstream_check_module         --add-module=modules/headers-more-nginx-module-0.37 \t--add-module=modules/ngx_http_upstream_session_sticky_module         "
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGTERM"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 89370268,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/b986e729043f3c354bc9a841161bdd901bc5e745c7edaaa1a657e0c6087379a4/diff:/var/lib/docker/overlay2/b970f27fa2796c4f3b3f84c7315c37ca7e5a5a0a7369d97304971cc13fb67701/diff:/var/lib/docker/overlay2/5cf0f27e8bb4292ea27314a68abce4b5e832127cb0f86af0f5efbc404d99ff0e/diff",
            "MergedDir": "/var/lib/docker/overlay2/b843fea2d65b8431aad54d92743f6af52eee22108b97d3e1ac445fed5323f1bf/merged",
            "UpperDir": "/var/lib/docker/overlay2/b843fea2d65b8431aad54d92743f6af52eee22108b97d3e1ac445fed5323f1bf/diff",
            "WorkDir": "/var/lib/docker/overlay2/b843fea2d65b8431aad54d92743f6af52eee22108b97d3e1ac445fed5323f1bf/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:d4fc045c9e3a848011de66f34b81f052d4f2c15a17bb196d637e526349601820",
            "sha256:529ca60b5877985012bce6f1498b0bbf2ea351d5077e195a019b09d3924a712c",
            "sha256:af5d5ea4f660252387beabe9a81bc1d497c34d057fb603384a115bad99320e93",
            "sha256:c673714345445f80f51dd2cfb165ca08480d17ca3870d9250ac2815132d12756"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-08-05T14:36:08.596805488+08:00"
    }
}

更多版本

docker.io/axizdkr/tengine:3.1.0

linux/amd64 docker.io89.37MB2024-08-30 10:12
439

docker.io/axizdkr/tengine:alpine3.19.1

linux/amd64 docker.io89.37MB2025-08-05 14:36
10