docker.io/openim/openim-admin-front:release-v1.8.4 linux/amd64

docker.io/openim/openim-admin-front:release-v1.8.4 - 国内下载镜像源 浏览次数:40

openim-admin-front 镜像描述

该镜像包含 OpenIM 管理平台的前端应用程序。

源镜像 docker.io/openim/openim-admin-front:release-v1.8.4
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4
镜像ID sha256:f9480fd8ee8e5063d142aa1ac2d5f0734ab90b1c1783d0a22bd306bdaa0221a1
镜像TAG release-v1.8.4
大小 51.98MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /usr/share/nginx/html/
OS/平台 linux/amd64
浏览量 40 次
贡献者 83******5@qq.com
镜像创建 2025-01-09T02:16:58.591213347Z
同步时间 2025-05-20 15:44
更新时间 2025-05-30 14:24
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.27.3 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.8.7 NJS_RELEASE=1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2025-01-09T02:14:34.770Z: org.opencontainers.image.created : org.opencontainers.image.description : org.opencontainers.image.licenses 9d3fc7a22d488f6b3255fac97648610e1d38b0e1: org.opencontainers.image.revision https://github.com/openimsdk/openim-admin: org.opencontainers.image.source openim-admin: org.opencontainers.image.title https://github.com/openimsdk/openim-admin: org.opencontainers.image.url release-v1.8.4: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4  docker.io/openim/openim-admin-front:release-v1.8.4

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4  docker.io/openim/openim-admin-front:release-v1.8.4

Shell快速替换命令

sed -i 's#openim/openim-admin-front:release-v1.8.4#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4  docker.io/openim/openim-admin-front:release-v1.8.4'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4  docker.io/openim/openim-admin-front:release-v1.8.4'

镜像构建历史


# 2025-01-09 10:16:58  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-01-09 10:16:58  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-01-09 10:16:58  4.93MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html/ # buildkit
                        
# 2025-01-09 10:16:58  450.00B 复制新文件或目录到容器中
COPY /app/nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2025-01-09 10:16:58  0.00B 指定运行容器时使用的用户
USER root
                        
# 2025-01-09 10:14:45  0.00B 设置工作目录为/usr/share/nginx/html/
WORKDIR /usr/share/nginx/html/
                        
# 2024-11-27 02:42:08  35.22MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 libxslt-dev                 gd-dev                 geoip-dev                 libedit-dev                 bash                 alpine-sdk                 findutils                 curl             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"5617feecfb441cd972b9ac51a2fd78384a3d2bde2f399163be0746d44ec8f7d8c47234af4f6b0012667c3d0446cced521f55f8f71254415e3766c2e3802bf960 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && cd alpine                 && make module-geoip module-image-filter module-njs module-xslt                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache curl ca-certificates # buildkit
                        
# 2024-11-27 02:42:08  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2024-11-27 02:42:08  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.8.7
                        
# 2024-11-27 02:42:08  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-11-27 02:42:08  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2024-11-27 02:42:08  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-11-27 02:42:08  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2024-11-27 02:42:08  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2024-11-27 02:42:08  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2024-11-27 02:42:08  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2024-11-27 02:42:08  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2024-11-27 02:42:08  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2024-11-27 02:42:08  4.01MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && addgroup -g 101 -S nginx     && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             set -x             && KEY_SHA512="e09fa32f0a0eab2b879ccbbc4d0e4fb9751486eedda75e35fac65802cc9faa266425edf83e261137a2f4d16281ce2c1a5f4502930fe75154723da014214f0655"             && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub             && if echo "$KEY_SHA512 */tmp/nginx_signing.rsa.pub" | sha512sum -c -; then                 echo "key verification succeeded!";                 mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/;             else                 echo "key verification failed!";                 exit 1;             fi             && apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 bash                 alpine-sdk                 findutils                 curl             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"5617feecfb441cd972b9ac51a2fd78384a3d2bde2f399163be0746d44ec8f7d8c47234af4f6b0012667c3d0446cced521f55f8f71254415e3766c2e3802bf960 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && cd alpine                 && make base                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache --virtual .gettext gettext     && mv /usr/bin/envsubst /tmp/         && runDeps="$(         scanelf --needed --nobanner /tmp/envsubst             | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }'             | sort -u             | xargs -r apk info --installed             | sort -u     )"     && apk add --no-cache $runDeps     && apk del --no-network .gettext     && mv /tmp/envsubst /usr/local/bin/     && apk add --no-cache tzdata     && ln -sf /dev/stdout /var/log/nginx/access.log     && ln -sf /dev/stderr /var/log/nginx/error.log     && mkdir /docker-entrypoint.d # buildkit
                        
# 2024-11-27 02:42:08  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2024-11-27 02:42:08  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2024-11-27 02:42:08  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.27.3
                        
# 2024-11-27 02:42:08  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2024-11-27 02:42:08  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2024-11-27 02:42:08  7.80MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.20.5-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:f9480fd8ee8e5063d142aa1ac2d5f0734ab90b1c1783d0a22bd306bdaa0221a1",
    "RepoTags": [
        "openim/openim-admin-front:release-v1.8.4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front:release-v1.8.4"
    ],
    "RepoDigests": [
        "openim/openim-admin-front@sha256:2c3597308961f1493462ec2bd45eb2f4f918f648ec99ef853b31e7bc5f752f4f",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openim/openim-admin-front@sha256:8027983ca58018941ae289c31e3d72bc1730265a9e419d79d9977094d0033256"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-01-09T02:16:58.591213347Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "root",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NGINX_VERSION=1.27.3",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.8.7",
            "NJS_RELEASE=1"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/usr/share/nginx/html/",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "2025-01-09T02:14:34.770Z",
            "org.opencontainers.image.description": "",
            "org.opencontainers.image.licenses": "",
            "org.opencontainers.image.revision": "9d3fc7a22d488f6b3255fac97648610e1d38b0e1",
            "org.opencontainers.image.source": "https://github.com/openimsdk/openim-admin",
            "org.opencontainers.image.title": "openim-admin",
            "org.opencontainers.image.url": "https://github.com/openimsdk/openim-admin",
            "org.opencontainers.image.version": "release-v1.8.4"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 51975132,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f70324d03a8a7866e4b01dd37749f3e6e6b4f6025ff6b184f2c534bc5a348df9/diff:/var/lib/docker/overlay2/df550bb1ff4e6e0bea0f08d46a4878acd54fd61c46bf89fcea20574b8e4bf8a2/diff:/var/lib/docker/overlay2/3862b3b5ea5e3e9cd9f5f42a45eb20ccfde6eb9f36836f481a5d57aa73b89d7d/diff:/var/lib/docker/overlay2/beb442767a2002718e800bc6bd53749aa5a14b5b8cf1b1633d3a60af921d5f39/diff:/var/lib/docker/overlay2/f76e36fd16705dd19558ea094213bc9828d5b29297cfe81420e69583bcc27786/diff:/var/lib/docker/overlay2/417ad1dfc7183139db825880cc2a5053ab9f3549669cca4745e497412acac7c3/diff:/var/lib/docker/overlay2/030475e17740070ebc2e9a608dda309910a5dbfa7d5ce944419c43f3d8c816d6/diff:/var/lib/docker/overlay2/af0f01fff258d1dc12156d938caca867cdc1b048294d7cc3e9a619ee389a3eb7/diff:/var/lib/docker/overlay2/63274df61462ce565a59754a6b1bc4fa7ce53ce0401df9f309412eb2e515b413/diff:/var/lib/docker/overlay2/d553ea0bda32dae2563a8cbcd5018a3b437bb98a2d00226412d3a3f84b6ff70b/diff",
            "MergedDir": "/var/lib/docker/overlay2/5967a476bbe28ce63ad42280b8939f3665fb4f392e71cb366728bc22a7d792e7/merged",
            "UpperDir": "/var/lib/docker/overlay2/5967a476bbe28ce63ad42280b8939f3665fb4f392e71cb366728bc22a7d792e7/diff",
            "WorkDir": "/var/lib/docker/overlay2/5967a476bbe28ce63ad42280b8939f3665fb4f392e71cb366728bc22a7d792e7/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ce5a8cde9eeef09160653b9c3d14f0c1c0e2900033476a5f2a9fc950161c0eb2",
            "sha256:a8903c9578e96e9b12e1c95bc063a17121501fd3d4eb86d93153b9e0030cb64f",
            "sha256:fd5f65a144eff5b0b6d81873afab888eb3e542810ee99405c737a78f3f78a510",
            "sha256:598e577f3a2384aa74182a192a710eabf7c61b0d8283f0f2737e40b9d4083683",
            "sha256:59a5cb944b91cd9f63a76f3878813b00266e4fe720886dfb8c1127cc4fb876ea",
            "sha256:9aa22afcf27f93024385cc52c6618f7ea2d01d871a9da2d98785acf54ca1f311",
            "sha256:23625999797d3a120bc0d83b859e7d1ec8d9b6939103fe4bfa35bcda08bde20a",
            "sha256:5a760029e979b26ccc3120770832af64f1a0f6c9f3735bafc98e512607485b63",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:52616544f7ea717abbc3722a6fd8e7b745092b7494ea793f26035f079faa9fe6",
            "sha256:a66c219be3cfef451f70a58dbc8aa41f58573e16f32ee71584cfc3ca024784db"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-05-20T15:44:45.786032536+08:00"
    }
}

更多版本

docker.io/openim/openim-admin-front:release-v1.8.2

linux/amd64 docker.io51.91MB2024-10-30 10:42
274

docker.io/openim/openim-admin-front:release-v1.7

linux/amd64 docker.io48.15MB2024-11-15 14:57
154

docker.io/openim/openim-admin-front:release-v1.8.3

linux/amd64 docker.io57.42MB2024-12-03 19:26
121

docker.io/openim/openim-admin-front:release-v1.8.4

linux/amd64 docker.io51.98MB2025-05-20 15:44
39