docker.io/cthulhoo/ttrss-web-nginx:latest linux/amd64

docker.io/cthulhoo/ttrss-web-nginx:latest - 国内下载镜像源 浏览次数:11

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

这是一个包含 Tiny Tiny RSS (TTRSS) 和 Nginx 的 Docker 镜像。TTRSS 是一个轻量级的、自托管的 RSS 阅读器,而 Nginx 则用作反向代理和 Web 服务器,以提供更稳定和高效的服务。

源镜像 docker.io/cthulhoo/ttrss-web-nginx:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest
镜像ID sha256:fa0cc82c83de6df661a8a19e0fa14b8127cfa2d7bc0ea3b028cac63b9cbbe5cd
镜像TAG latest
大小 52.47MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2025-07-12T11:35:24.172197745Z
同步时间 2025-07-13 17:16
更新时间 2025-07-14 07:13
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.0 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.0 NJS_RELEASE=1 APP_UPSTREAM=app APP_FASTCGI_PASS=$backend APP_WEB_ROOT=/var/www/html APP_BASE=/tt-rss RESOLVER=127.0.0.11 NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx
镜像标签
2025-07-12T11:35:08Z": "org.opencontainers.image.created dea3f2dcb2badccd683296dfc74cfcf506c3a7da": "org.opencontainers.image.revision https://gitlab.tt-rss.org/tt-rss/tt-rss": "org.opencontainers.image.url master": "org.opencontainers.image.version NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest  docker.io/cthulhoo/ttrss-web-nginx:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest  docker.io/cthulhoo/ttrss-web-nginx:latest

Shell快速替换命令

sed -i 's#cthulhoo/ttrss-web-nginx:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 0001-01-01 08:00:00  1.74KB 复制新文件或目录到容器中
COPY .docker/web-nginx/nginx.conf /etc/nginx/templates/nginx.conf.template
                        
# 2025-06-25 04:52:14  40.01MB 执行命令并创建新的镜像层
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=\"400593da45fc0195a01138c0c23a06059da1c6a2e26959f2c4c95fbaf63436ff211665ef01392d2b775a0133d5b57680dabe51b840a55f82e89621e84cf651d1 *${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
                        
# 2025-06-25 04:52:14  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2025-06-25 04:52:14  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.0
                        
# 2025-06-25 04:52:14  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-06-25 04:52:14  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-06-25 04:52:14  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-06-25 04:52:14  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2025-06-25 04:52:14  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2025-06-25 04:52:14  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2025-06-25 04:52:14  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2025-06-25 04:52:14  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2025-06-25 04:52:14  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2025-06-25 04:52:14  4.14MB 执行命令并创建新的镜像层
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=\"400593da45fc0195a01138c0c23a06059da1c6a2e26959f2c4c95fbaf63436ff211665ef01392d2b775a0133d5b57680dabe51b840a55f82e89621e84cf651d1 *${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 gettext-envsubst     && 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
                        
# 2025-06-25 04:52:14  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2025-06-25 04:52:14  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2025-06-25 04:52:14  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.0
                        
# 2025-06-25 04:52:14  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2025-05-31 00:20:41  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-05-31 00:20:41  8.31MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.0-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:fa0cc82c83de6df661a8a19e0fa14b8127cfa2d7bc0ea3b028cac63b9cbbe5cd",
    "RepoTags": [
        "cthulhoo/ttrss-web-nginx:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx:latest"
    ],
    "RepoDigests": [
        "cthulhoo/ttrss-web-nginx@sha256:1c509f1ce4a3303ec9e50f0774d615abcdae804c4a919d823938041cfaaf579f",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/cthulhoo/ttrss-web-nginx@sha256:0df30928a64f2d7c9b5d77c7013ab61282e1f624a29fd74076566eaad3245399"
    ],
    "Parent": "",
    "Comment": "",
    "Created": "2025-07-12T11:35:24.172197745Z",
    "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.0",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.0",
            "NJS_RELEASE=1",
            "APP_UPSTREAM=app",
            "APP_FASTCGI_PASS=$backend",
            "APP_WEB_ROOT=/var/www/html",
            "APP_BASE=/tt-rss",
            "RESOLVER=127.0.0.11",
            "NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "curl --fail http://localhost${APP_BASE}/index.php || exit 1"
            ]
        },
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "\"org.opencontainers.image.created": "2025-07-12T11:35:08Z\"",
            "\"org.opencontainers.image.revision": "dea3f2dcb2badccd683296dfc74cfcf506c3a7da\"",
            "\"org.opencontainers.image.url": "https://gitlab.tt-rss.org/tt-rss/tt-rss\"",
            "\"org.opencontainers.image.version": "master\"",
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 52472390,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/df2f55c947cdba26ae0d7a4184795521e032889abcba7c9de01e6eddc76077ac/diff:/var/lib/docker/overlay2/793ee9342431b69946f52694cc193ac7e39935b1b46e8c26a095e78904ff2f56/diff:/var/lib/docker/overlay2/6af43a2bdf3b0696eb40d4aeba09246cc5f47d2be8005b198aba12caa6a8c0ad/diff:/var/lib/docker/overlay2/c5996714260bf8f8252d6eac07de753424f54bd3bd06c3f5103ed02f198e56fd/diff:/var/lib/docker/overlay2/6729edf12d8825d2cb5754419aa12513af55b51e0321f9cc341016a8692c0225/diff:/var/lib/docker/overlay2/0190511b79e4d5d47478030577c5d224d454e8112b451f263b26a786a08900bb/diff:/var/lib/docker/overlay2/7d72d1fffdc8eca20ac2f707301674aa1db120c99380aee808abae00363d63dd/diff:/var/lib/docker/overlay2/612cc8e7287e174f0c2d5977a0ca343b7cc0bd246756da806897f7ce1d920402/diff",
            "MergedDir": "/var/lib/docker/overlay2/7d86930ebeff9390f45feb68af849f6f955cdc4b758bccbe8dcdc4329e54ca6b/merged",
            "UpperDir": "/var/lib/docker/overlay2/7d86930ebeff9390f45feb68af849f6f955cdc4b758bccbe8dcdc4329e54ca6b/diff",
            "WorkDir": "/var/lib/docker/overlay2/7d86930ebeff9390f45feb68af849f6f955cdc4b758bccbe8dcdc4329e54ca6b/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:fd2758d7a50e2b78d275ee7d1c218489f2439084449d895fa17eede6c61ab2c4",
            "sha256:7b97c641cb43046a19147210c8310fb3e945511d823ff25d6a2a8cdeb306cf84",
            "sha256:bbbd2d1aea899787ba39ca46bff9ec748fe793c6041d2e5cc333695e06497513",
            "sha256:2aaacff968bce006201fc0e4294c4e6bb303760c1cf658329a8a73fa72f99f80",
            "sha256:36acb230000e7410fa30f2fcc36271edfd7b1ee55c61013057db3b6d94d433c4",
            "sha256:4f313ed230a0d606701fd96a6e0934f24739a31f1bad8d06d42aa0497c378752",
            "sha256:bd66bdd2f47fe79516d2b2af823745b8c31ee3de775f210e6a3f196248445284",
            "sha256:640e06e412a990ebeb0f48103529c16fff8f33a9595a268ad84bbe45adf28649",
            "sha256:4d8daa4d52241af37b45d70a5a7fc19733d3743bc1a5270aa367fa0303bb4099"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-07-13T17:16:40.840572086+08:00"
    }
}

更多版本

docker.io/cthulhoo/ttrss-web-nginx:latest

linux/amd64 docker.io52.47MB2025-07-13 17:16
10