docker.io/axizdkr/tengine:3.1.0 linux/amd64

docker.io/axizdkr/tengine:3.1.0 - 国内下载镜像源 浏览次数:34
这个镜像是基于 Docker 的,名为 "Tengine" 的 web 应用容器镜像,提供了一个完整且高效的 web 应用环境,支持多种语言和框架的部署。
源镜像 docker.io/axizdkr/tengine:3.1.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:3.1.0
镜像ID sha256:b9edf6cfae4ffdf5362facf1f3ef8940716719e7efd049e762eb26e799d2ea0e
镜像TAG 3.1.0
大小 89.37MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口
工作目录
OS/平台 linux/amd64
浏览量 34 次
贡献者 36******8@qq.com
镜像创建 2024-04-12T13:57:56.56424362+03:00
同步时间 2024-08-30 10:12
更新时间 2024-09-19 15:08
开放端口
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:3.1.0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:3.1.0  docker.io/axizdkr/tengine:3.1.0

Containerd拉取命令

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

Shell快速替换命令

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

镜像历史

大小 创建时间 层信息
0.00B 2024-04-12 18:57:56 CMD ["nginx" "-g" "daemon off;"]
0.00B 2024-04-12 18:57:56 STOPSIGNAL SIGTERM
0.00B 2024-04-12 18:57:56 EXPOSE map[443/tcp:{} 80/tcp:{}]
2.40KB 2024-04-12 18:57:56 COPY nginx.conf /etc/nginx/nginx.conf # buildkit
81.99MB 2024-04-12 18:57:56 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
0.00B 2024-04-12 18:54:49 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
0.00B 2024-04-12 18:54:49 RUN /bin/sh -c rm -rf /var/cache/apk/* && rm -rf /tmp/* # buildkit
0.00B 2024-04-12 18:54:49 ENV TENGINE_VERSION=3.1.0
0.00B 2024-01-27 08:30:48 /bin/sh -c #(nop) CMD ["/bin/sh"]
7.38MB 2024-01-27 08:30:48 /bin/sh -c #(nop) ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in /

镜像信息

{
    "Id": "sha256:b9edf6cfae4ffdf5362facf1f3ef8940716719e7efd049e762eb26e799d2ea0e",
    "RepoTags": [
        "axizdkr/tengine:3.1.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/axizdkr/tengine:3.1.0"
    ],
    "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/1cb277d8505636cf4d0bf06c4739c935bf700aaf61ac41412a45393c7f16930b/diff:/var/lib/docker/overlay2/7aa139c2888bec11ec288c3850217a39c8af1221b6087d75eeea303442f893a4/diff:/var/lib/docker/overlay2/27f9e469fe627f917495a015135a9d57c175aa9a4c4034d69c51def780150b56/diff",
            "MergedDir": "/var/lib/docker/overlay2/1342bf2e7dce3e2df9f78c602dafa081f692acb49ace143856f5cf9b1391ac0f/merged",
            "UpperDir": "/var/lib/docker/overlay2/1342bf2e7dce3e2df9f78c602dafa081f692acb49ace143856f5cf9b1391ac0f/diff",
            "WorkDir": "/var/lib/docker/overlay2/1342bf2e7dce3e2df9f78c602dafa081f692acb49ace143856f5cf9b1391ac0f/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:d4fc045c9e3a848011de66f34b81f052d4f2c15a17bb196d637e526349601820",
            "sha256:529ca60b5877985012bce6f1498b0bbf2ea351d5077e195a019b09d3924a712c",
            "sha256:af5d5ea4f660252387beabe9a81bc1d497c34d057fb603384a115bad99320e93",
            "sha256:c673714345445f80f51dd2cfb165ca08480d17ca3870d9250ac2815132d12756"
        ]
    },
    "Metadata": {
        "LastTagTime": "2024-08-30T10:12:00.177916075+08:00"
    }
}

更多版本