docker.io/uusec/openresty-manager:2.4.2 linux/amd64

docker.io/uusec/openresty-manager:2.4.2 - 国内下载镜像源 浏览次数:8

这是一个基于OpenResty的管理镜像,由uusec维护。它提供了一个方便管理和配置OpenResty服务器的环境。

源镜像 docker.io/uusec/openresty-manager:2.4.2
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2
镜像ID sha256:03fc8910d9ccaf0f74d8e1cc53ec91148eda6bd5533514be4aa065f3de09c4dc
镜像TAG 2.4.2
大小 497.30MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /opt/om/oms
启动入口
工作目录 /opt/om/
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2025-12-02T14:36:26.048672153Z
同步时间 2026-03-09 21:06
开放端口
34567/tcp 443/tcp 80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
镜像标签
Evan Wies <evan@neomantra.net>: maintainer OpenResty Manager: org.opencontainers.image.description MIT: org.opencontainers.image.licenses https://github.com/Safe3/openresty-manager: org.opencontainers.image.source openresty-manager: org.opencontainers.image.title v2.4.2: org.opencontainers.image.version https://openresty.org/package/pubkey.gpg: resty_apt_pgp https://openresty.org/package/debian: resty_apt_repo : resty_deb_flavor =1.27.1.2-1~bullseye1: resty_deb_version : resty_fat_deb_flavor =1.27.1.2-1~bullseye1: resty_fat_deb_version openresty/openresty: resty_fat_image_base 1.27.1.2-bullseye-amd64: resty_fat_image_tag debian: resty_image_base bullseye-slim: resty_image_tag

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2  docker.io/uusec/openresty-manager:2.4.2

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2  docker.io/uusec/openresty-manager:2.4.2

Shell快速替换命令

sed -i 's#uusec/openresty-manager:2.4.2#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2  docker.io/uusec/openresty-manager:2.4.2'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2  docker.io/uusec/openresty-manager:2.4.2'

镜像构建历史


# 2025-12-02 22:36:26  0.00B 设置默认要执行的命令
CMD ["/opt/om/oms"]
                        
# 2025-12-02 22:36:26  0.00B 设置工作目录为/opt/om/
WORKDIR /opt/om/
                        
# 2025-12-02 22:36:26  0.00B 声明容器运行时监听的端口
EXPOSE map[34567/tcp:{}]
                        
# 2025-12-02 22:36:26  0.00B 声明容器运行时监听的端口
EXPOSE map[443/tcp:{}]
                        
# 2025-12-02 22:36:26  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-12-02 22:36:26  226.39MB 复制新文件或目录到容器中
COPY ./om_amd64 /opt/om # buildkit
                        
# 2025-11-18 23:21:08  0.00B 定义构建参数
ARG TARGETOS=linux TARGETARCH=amd64
                        
# 2025-11-18 23:21:08  121.37MB 执行命令并创建新的镜像层
RUN /bin/sh -c DEBIAN_FRONTEND=noninteractive apt-get update     && apt-get install -y --reinstall libc-bin     && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends     ca-certificates curl libmaxminddb0 logrotate     && install -m 0755 -d /etc/apt/keyrings     && curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc     && chmod a+r /etc/apt/keyrings/docker.asc     && echo     "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian     $(. /etc/os-release && echo "$VERSION_CODENAME") stable" |     tee /etc/apt/sources.list.d/docker.list > /dev/null     && apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends docker-ce-cli docker-compose-plugin     && DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/*     && mkdir -p /opt # buildkit
                        
# 2025-11-18 23:21:08  0.00B 添加元数据标签
LABEL org.opencontainers.image.title=openresty-manager org.opencontainers.image.version=v2.4.2 org.opencontainers.image.description=OpenResty Manager org.opencontainers.image.licenses=MIT org.opencontainers.image.source=https://github.com/Safe3/openresty-manager
                        
# 2025-10-31 01:05:50  50.27MB 执行命令并创建新的镜像层
RUN |4 RESTY_FAT_IMAGE_BASE=openresty/openresty RESTY_FAT_IMAGE_TAG=1.27.1.2-bullseye-amd64 RESTY_FAT_DEB_FLAVOR= RESTY_FAT_DEB_VERSION==1.27.1.2-1~bullseye1 /bin/sh -c DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends         openresty-resty${RESTY_FAT_DEB_FLAVOR}${RESTY_FAT_DEB_VERSION}         openresty-opm${RESTY_FAT_DEB_FLAVOR}${RESTY_FAT_DEB_VERSION}     && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-10-31 01:05:50  0.00B 添加元数据标签
LABEL resty_fat_image_tag=1.27.1.2-bullseye-amd64
                        
# 2025-10-31 01:05:50  0.00B 添加元数据标签
LABEL resty_fat_image_base=openresty/openresty
                        
# 2025-10-31 01:05:50  0.00B 添加元数据标签
LABEL resty_fat_deb_version==1.27.1.2-1~bullseye1
                        
# 2025-10-31 01:05:50  0.00B 添加元数据标签
LABEL resty_fat_deb_flavor=
                        
# 2025-10-31 01:05:50  0.00B 添加元数据标签
LABEL maintainer=Evan Wies <evan@neomantra.net>
                        
# 2025-10-31 01:05:50  0.00B 定义构建参数
ARG RESTY_FAT_DEB_VERSION==1.27.1.2-1~bullseye1
                        
# 2025-10-31 01:05:50  0.00B 定义构建参数
ARG RESTY_FAT_DEB_FLAVOR=
                        
# 2025-10-31 01:05:50  0.00B 定义构建参数
ARG RESTY_FAT_IMAGE_TAG=1.27.1.2-bullseye-amd64
                        
# 2025-10-31 01:05:50  0.00B 定义构建参数
ARG RESTY_FAT_IMAGE_BASE=openresty/openresty
                        
# 2025-10-31 00:54:16  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-10-31 00:54:16  0.00B 设置默认要执行的命令
CMD ["/usr/bin/openresty" "-g" "daemon off;"]
                        
# 2025-10-31 00:54:16  1.59KB 复制新文件或目录到容器中
COPY nginx.vh.default.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2025-10-31 00:54:16  3.02KB 复制新文件或目录到容器中
COPY nginx.conf /usr/local/openresty/nginx/conf/nginx.conf # buildkit
                        
# 2025-10-31 00:54:16  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
                        
# 2025-10-31 00:54:16  18.59MB 执行命令并创建新的镜像层
RUN |6 RESTY_DEB_FLAVOR= RESTY_DEB_VERSION==1.27.1.2-1~bullseye1 RESTY_APT_REPO=https://openresty.org/package/debian RESTY_APT_PGP=https://openresty.org/package/pubkey.gpg RESTY_IMAGE_BASE=debian RESTY_IMAGE_TAG=bullseye-slim /bin/sh -c DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends         ca-certificates         gettext-base         gnupg2         lsb-base         lsb-release         software-properties-common         wget     && wget -qO /tmp/pubkey.gpg ${RESTY_APT_PGP}     && DEBIAN_FRONTEND=noninteractive apt-key add /tmp/pubkey.gpg     && rm /tmp/pubkey.gpg     && DEBIAN_FRONTEND=noninteractive add-apt-repository -y "deb ${RESTY_APT_REPO} $(lsb_release -sc) openresty"     && DEBIAN_FRONTEND=noninteractive apt-get remove -y --purge         gnupg2         lsb-release         software-properties-common         wget     && DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends         openresty${RESTY_DEB_FLAVOR}${RESTY_DEB_VERSION}     && DEBIAN_FRONTEND=noninteractive apt-get autoremove -y     && rm -rf /var/lib/apt/lists/*     && mkdir -p /var/run/openresty     && ln -sf /dev/stdout /usr/local/openresty${RESTY_DEB_FLAVOR}/nginx/logs/access.log     && ln -sf /dev/stderr /usr/local/openresty${RESTY_DEB_FLAVOR}/nginx/logs/error.log # buildkit
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_deb_version==1.27.1.2-1~bullseye1
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_deb_flavor=
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_apt_pgp=https://openresty.org/package/pubkey.gpg
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_apt_repo=https://openresty.org/package/debian
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_image_tag=bullseye-slim
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL resty_image_base=debian
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_IMAGE_TAG=bullseye-slim
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_IMAGE_BASE=debian
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_APT_PGP=https://openresty.org/package/pubkey.gpg
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_APT_REPO=https://openresty.org/package/debian
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_DEB_VERSION==1.27.1.2-1~bullseye1
                        
# 2025-10-31 00:54:16  0.00B 定义构建参数
ARG RESTY_DEB_FLAVOR=
                        
# 2025-10-31 00:54:16  0.00B 添加元数据标签
LABEL maintainer=Evan Wies <evan@neomantra.net>
                        
# 2025-10-20 08:00:00  80.67MB 
# debian.sh --arch 'amd64' out/ 'bullseye' '@1760918400'
                        
                    

镜像信息

{
    "Id": "sha256:03fc8910d9ccaf0f74d8e1cc53ec91148eda6bd5533514be4aa065f3de09c4dc",
    "RepoTags": [
        "uusec/openresty-manager:2.4.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager:2.4.2"
    ],
    "RepoDigests": [
        "uusec/openresty-manager@sha256:008cdf48b77961e04120863991c83fb6fdcfe6b19057281a4e411f283502b26b",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/uusec/openresty-manager@sha256:9f39092077682c200b208588455fba2907a623d26904abd769a3eb1fa4d7b5db"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-02T14:36:26.048672153Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "34567/tcp": {},
            "443/tcp": {},
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin"
        ],
        "Cmd": [
            "/opt/om/oms"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/opt/om/",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "maintainer": "Evan Wies \u003cevan@neomantra.net\u003e",
            "org.opencontainers.image.description": "OpenResty Manager",
            "org.opencontainers.image.licenses": "MIT",
            "org.opencontainers.image.source": "https://github.com/Safe3/openresty-manager",
            "org.opencontainers.image.title": "openresty-manager",
            "org.opencontainers.image.version": "v2.4.2",
            "resty_apt_pgp": "https://openresty.org/package/pubkey.gpg",
            "resty_apt_repo": "https://openresty.org/package/debian",
            "resty_deb_flavor": "",
            "resty_deb_version": "=1.27.1.2-1~bullseye1",
            "resty_fat_deb_flavor": "",
            "resty_fat_deb_version": "=1.27.1.2-1~bullseye1",
            "resty_fat_image_base": "openresty/openresty",
            "resty_fat_image_tag": "1.27.1.2-bullseye-amd64",
            "resty_image_base": "debian",
            "resty_image_tag": "bullseye-slim"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 497297897,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/d74ac37d199c5689ac74ddba0598ad4b6bd392a20eaa97ba8fe2771de488e302/diff:/var/lib/docker/overlay2/1f00e2fc1636234a59ccefc69c4051ee7dbd39d3e907dbc7eeba587bb9569733/diff:/var/lib/docker/overlay2/55e8120c1218597c39573bd5dffcea22d2d5451b84abe677cc1b5b25e9062867/diff:/var/lib/docker/overlay2/112e9a4f0484e5af1d291b3d696e5eeaa9339ac34b91238653c8262709f86303/diff:/var/lib/docker/overlay2/dfb7d2f5cda001bef72f1057355be91ac3a170ca7159fb9e560572084bc94808/diff:/var/lib/docker/overlay2/3abe0404fd9c5a483b49615b5e721b1e1074f371da2a4a1b1bb5eab4dc3d3b73/diff:/var/lib/docker/overlay2/8a3e9819caff521d275bf53de588e1b61a3371106e83cb126e5e0c4638900f5f/diff",
            "MergedDir": "/var/lib/docker/overlay2/887a61c82eca65f87797c962f51d8388139ff0da7139193162eae37db998fce1/merged",
            "UpperDir": "/var/lib/docker/overlay2/887a61c82eca65f87797c962f51d8388139ff0da7139193162eae37db998fce1/diff",
            "WorkDir": "/var/lib/docker/overlay2/887a61c82eca65f87797c962f51d8388139ff0da7139193162eae37db998fce1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:584a83027a87baa03abecf175bc8b63c45f7397cc88438b6a921f1558ba8c884",
            "sha256:903a96f4fb63de21980c9c6cfe1db1b5a6e152277bc0533d33f85bc94cbad202",
            "sha256:7131fa8718c52b200930eb55471865caff2b5b04b832e65b86e46a79681aee69",
            "sha256:bfca9ee71187b581dbb1baf61b40a540bdcf3b272e197114e6bb816a63c5dcab",
            "sha256:adbc093e0d8eca37cb663dc0f7fb8e8cfd7ce8d7668b78b8ac6fc09795403540",
            "sha256:b851f95650fd541c9e126aef3365b6581e1dd92832c66f307ee16e2135c927b9",
            "sha256:7ae3496df0e298bc13f0f41e4a88958b120c3e155b9df1d6b588b535b7081390",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-09T21:06:16.311400593+08:00"
    }
}

更多版本

docker.io/uusec/openresty-manager:1.2.0

linux/amd64 docker.io351.37MB2025-05-19 19:32
359

docker.io/uusec/openresty-manager:1.3.0

linux/amd64 docker.io351.40MB2025-05-22 16:17
297

docker.io/uusec/openresty-manager:latest

linux/amd64 docker.io352.18MB2025-06-03 08:19
546

docker.io/uusec/openresty-manager:2.4.2

linux/amd64 docker.io497.30MB2026-03-09 21:06
7