docker.io/ckulka/baikal:nginx linux/amd64

docker.io/ckulka/baikal:nginx - 国内下载镜像源 浏览次数:24
源镜像 docker.io/ckulka/baikal:nginx
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx
镜像ID sha256:91942f3e438d30bd457433c0f591e939a684aec36d2c5783e3ddf3bd665617c0
镜像TAG nginx
大小 224.80MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 24 次
贡献者
镜像创建 2025-10-12T08:39:34.772028096Z
同步时间 2025-10-15 17:38
更新时间 2025-10-20 07:13
开放端口
80/tcp
目录挂载
/var/www/baikal/Specific /var/www/baikal/config
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.2 NJS_VERSION=0.9.3 NJS_RELEASE=1~trixie PKG_RELEASE=1~trixie DYNPKG_RELEASE=1~trixie
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer : org.opencontainers.image.created Ready-to-go Baikal server: org.opencontainers.image.description https://github.com/ckulka/baikal-docker: org.opencontainers.image.documentation MIT: org.opencontainers.image.licenses 0.10.1+hafix2: org.opencontainers.image.revision https://github.com/ckulka/baikal-docker: org.opencontainers.image.source Baikal: org.opencontainers.image.title https://hub.docker.com/r/ckulka/baikal: org.opencontainers.image.url 0.10.1: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx  docker.io/ckulka/baikal:nginx

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx  docker.io/ckulka/baikal:nginx

Shell快速替换命令

sed -i 's#ckulka/baikal:nginx#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx  docker.io/ckulka/baikal:nginx'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx  docker.io/ckulka/baikal:nginx'

镜像构建历史


# 2025-10-12 16:39:34  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/www/baikal/Specific]
                        
# 2025-10-12 16:39:34  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/www/baikal/config]
                        
# 2025-10-12 16:39:34  922.00B 复制新文件或目录到容器中
COPY files/nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2025-10-12 16:39:34  6.33MB 复制新文件或目录到容器中
COPY --chown=nginx:nginx baikal /var/www/baikal # buildkit
                        
# 2025-10-12 16:39:34  40.71KB 复制新文件或目录到容器中
COPY files/docker-entrypoint.d/*.sh files/docker-entrypoint.d/*.php files/docker-entrypoint.d/nginx/ /docker-entrypoint.d/ # buildkit
                        
# 2025-10-12 16:39:34  58.46MB 执行命令并创建新的镜像层
RUN /bin/sh -c curl -o /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg &&  apt update                  &&  apt install -y lsb-release  &&  echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list &&  apt remove -y lsb-release   &&  apt update                  &&    apt install -y                php8.1-curl                   php8.1-fpm                    php8.1-mbstring               php8.1-mysql                  php8.1-pgsql                  php8.1-sqlite3                php8.1-xml                    sqlite3                       msmtp msmtp-mta           &&  rm -rf /var/lib/apt/lists/* &&  sed -i 's/www-data/nginx/' /etc/php/8.1/fpm/pool.d/www.conf &&  sed -i 's/^listen = .*/listen = \/var\/run\/php-fpm.sock/' /etc/php/8.1/fpm/pool.d/www.conf # buildkit
                        
# 2025-10-08 05:06:46  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-10-08 05:06:46  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-10-08 05:06:46  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-10-08 05:06:46  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2025-10-08 05:06:46  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-08 05:06:46  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-08 05:06:46  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2025-10-08 05:06:46  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-08 05:06:46  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2025-10-08 05:06:46  81.35MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && groupadd --system --gid 101 nginx     && useradd --system --gid nginx --no-create-home --home /nonexistent --comment "nginx user" --shell /bin/false --uid 101 nginx     && apt-get update     && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates     &&     NGINX_GPGKEYS="573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 8540A6F18833A80E9C1653A42FD21310B49F6B46 9E9BE90EACBCDE69FE9B204CBCDCD8A38D88A2B3";     NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg;     export GNUPGHOME="$(mktemp -d)";     found='';     for NGINX_GPGKEY in $NGINX_GPGKEYS; do     for server in         hkp://keyserver.ubuntu.com:80         pgp.mit.edu     ; do         echo "Fetching GPG key $NGINX_GPGKEY from $server";         gpg1 --batch --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break;     done;     test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1;     done;     gpg1 --batch --export $NGINX_GPGKEYS > "$NGINX_GPGKEY_PATH" ;     rm -rf "$GNUPGHOME";     apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/*     && dpkgArch="$(dpkg --print-architecture)"     && nginxPackages="         nginx=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE}     "     && case "$dpkgArch" in         amd64|arm64)             echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list             && apt-get update             ;;         *)             tempDir="$(mktemp -d)"             && chmod 777 "$tempDir"                         && savedAptMark="$(apt-mark showmanual)"                         && apt-get update             && apt-get install --no-install-recommends --no-install-suggests -y                 curl                 devscripts                 equivs                 git                 libxml2-utils                 lsb-release                 xsltproc             && (                 cd "$tempDir"                 && REVISION="${NGINX_VERSION}-${PKG_RELEASE}"                 && REVISION=${REVISION%~*}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${REVISION}.tar.gz                 && PKGOSSCHECKSUM="633b2a8b56bd48527d7e293a255fd706dfbb5a9c47605ff18e91a2a409801043ee00ecb0da5fadf9cdf1d483c5ca848e81c1861870619523e15ca9e494b6e700 *${REVISION}.tar.gz"                 && if [ "$(openssl sha512 -r ${REVISION}.tar.gz)" = "$PKGOSSCHECKSUM" ]; then                     echo "pkg-oss tarball checksum verification succeeded!";                 else                     echo "pkg-oss tarball checksum verification failed!";                     exit 1;                 fi                 && tar xzvf ${REVISION}.tar.gz                 && cd pkg-oss-${REVISION}                 && cd debian                 && for target in base module-geoip module-image-filter module-njs module-xslt; do                     make rules-$target;                     mk-build-deps --install --tool="apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes"                         debuild-$target/nginx-$NGINX_VERSION/debian/control;                 done                 && make base module-geoip module-image-filter module-njs module-xslt             )                         && apt-mark showmanual | xargs apt-mark auto > /dev/null             && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; }                         && ls -lAFh "$tempDir"             && ( cd "$tempDir" && dpkg-scanpackages . > Packages )             && grep '^Package: ' "$tempDir/Packages"             && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list             && apt-get -o Acquire::GzipIndexes=false update             ;;     esac         && apt-get install --no-install-recommends --no-install-suggests -y                         $nginxPackages                         gettext-base                         curl     && apt-get remove --purge --auto-remove -y && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list         && if [ -n "$tempDir" ]; then         apt-get purge -y --auto-remove         && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list;     fi     && ln -sf /dev/stdout /var/log/nginx/access.log     && ln -sf /dev/stderr /var/log/nginx/error.log     && mkdir /docker-entrypoint.d # buildkit
                        
# 2025-10-08 05:06:46  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1~trixie
                        
# 2025-10-08 05:06:46  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1~trixie
                        
# 2025-10-08 05:06:46  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1~trixie
                        
# 2025-10-08 05:06:46  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.3
                        
# 2025-10-08 05:06:46  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.2
                        
# 2025-10-08 05:06:46  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2025-09-29 08:00:00  78.62MB 
# debian.sh --arch 'amd64' out/ 'trixie' '@1759104000'
                        
                    

镜像信息

{
    "Id": "sha256:91942f3e438d30bd457433c0f591e939a684aec36d2c5783e3ddf3bd665617c0",
    "RepoTags": [
        "ckulka/baikal:nginx",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal:nginx"
    ],
    "RepoDigests": [
        "ckulka/baikal@sha256:fc63043a183efc0a113dbdf937362f76c034ad2de81d8a10c1a92221dc39d652",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/ckulka/baikal@sha256:bce09ee800c29f6326e7f91fe91ea44db849047bdb7f5e2479efa3906cdcd96c"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-10-12T08:39:34.772028096Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "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.29.2",
            "NJS_VERSION=0.9.3",
            "NJS_RELEASE=1~trixie",
            "PKG_RELEASE=1~trixie",
            "DYNPKG_RELEASE=1~trixie"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "Image": "",
        "Volumes": {
            "/var/www/baikal/Specific": {},
            "/var/www/baikal/config": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "",
            "org.opencontainers.image.description": "Ready-to-go Baikal server",
            "org.opencontainers.image.documentation": "https://github.com/ckulka/baikal-docker",
            "org.opencontainers.image.licenses": "MIT",
            "org.opencontainers.image.revision": "0.10.1+hafix2",
            "org.opencontainers.image.source": "https://github.com/ckulka/baikal-docker",
            "org.opencontainers.image.title": "Baikal",
            "org.opencontainers.image.url": "https://hub.docker.com/r/ckulka/baikal",
            "org.opencontainers.image.version": "0.10.1"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 224801815,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/16ba78d606a4d1227863c00d7d734db4c75263b8d35f057a1b675224795b2712/diff:/var/lib/docker/overlay2/08c83058359a7e86e36dbc66dfc371875781f9268622bf0d4280666fb731edc1/diff:/var/lib/docker/overlay2/f1687ed2bdd2b0e4490d5a44be95161aab090de8f87e608446febe5799ddcb9d/diff:/var/lib/docker/overlay2/e30f6808268bff0160dc629d3f6ad896296a9805ca40d71276721fce588f651a/diff:/var/lib/docker/overlay2/8d655739fb91210fcdf730fa24531c581e20aa98be720dfd5fb50482e681000e/diff:/var/lib/docker/overlay2/bd23c0c4877f627b68488c9d233c7ef139e889cb54d381f68b52c1cbd5bd4bb6/diff:/var/lib/docker/overlay2/250f814fdb2e518e80a4683297e3573ec3595edd942415cc4c988e04cd7745a9/diff:/var/lib/docker/overlay2/99186c02d82beb7e259397e7cffee9e17cda0a422ce86204891fb5d2a147f246/diff:/var/lib/docker/overlay2/32e8f99ee461bbabc84badb0c615070d39062ae57ac528bd90b11197eda78a41/diff:/var/lib/docker/overlay2/3f2703f281ccfa5bcc2303a59d177177eadc366603173a97e44cd67756ec01ff/diff",
            "MergedDir": "/var/lib/docker/overlay2/de48e058ad8e492c408819812470fa73e3499f8aeb12aadae78a2b426c995d3b/merged",
            "UpperDir": "/var/lib/docker/overlay2/de48e058ad8e492c408819812470fa73e3499f8aeb12aadae78a2b426c995d3b/diff",
            "WorkDir": "/var/lib/docker/overlay2/de48e058ad8e492c408819812470fa73e3499f8aeb12aadae78a2b426c995d3b/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:1d46119d249f7719e1820e24a311aa7c453f166f714969cffe89504678eaa447",
            "sha256:d61356d6b00cb9bb705967ddb13619e9fd8bb54d127a2add41ba1c6b82d1e395",
            "sha256:96d86bc8de5933945d423bf55c03603b53ece1c8ce23608e2637faf0eeff8051",
            "sha256:98da25895b8751934521c3566d8b991f21ff8daab88054f2aaf07e0ad11aa889",
            "sha256:8117ecf0e00cc71d03b1a45997c465ed3081d7d7f4e4c7018464006668e1a59d",
            "sha256:d009686a1d105a36455f5589a7b50895309422856483c16aa1a835c90b1ae03d",
            "sha256:d6eb78ef52a22d698e3eba90db4cd16d328b7211db2e8c51aca7dbf50dd38a4c",
            "sha256:5abb73e41cdbd478174900cfb91fa375569041c321f0318bdd34ba912933e763",
            "sha256:c66adc7aa6d10c3faebb49b8dde0f19b2338e701993d9ac9ae6985e1cc5a8fdf",
            "sha256:cb2bc8fb0d84794d18d0c6d2502fcdfea8259ad5cce7a7909e5b6117955a90f0",
            "sha256:eeed4673580b510bbff9ad8d0ac0b0198f48b9a0ec7c46bc18d5ce3f145c2e8f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-15T17:38:47.528737355+08:00"
    }
}

更多版本

docker.io/ckulka/baikal:nginx

linux/amd64 docker.io224.80MB2025-10-15 17:38
23