Namespace
longhornio
Image / Tag
longhorn-ui:v1.2.0-amd64
Content Digest
sha256:15415f0fa177affea08a56a7d7b357060a0c2a425d41a91dba04a282ef8e96bc
Details
Created

2021-08-31 10:25:25 UTC

Size

19.1 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-08-31T10:23:14Z
  • org.opencontainers.image.revision
    2b5d4ac95ac8098efb223af0f0b25e4e9935dde9
  • org.opencontainers.image.source
    https://github.com/longhorn/longhorn-ui.git
  • org.opencontainers.image.url
    https://github.com/longhorn/longhorn-ui

Environment
LONGHORN_MANAGER_IP

http://localhost:9500

NGINX_VERSION

1.20.1

NJS_VERSION

0.5.3

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1


Layers

[#000] sha256:540db60ca9383eac9e418f78490994d0af424aab7bf6d0e47ac8ed4e2e9bcbba - 14.06% (2.68 MB)

[#001] sha256:b824a2584eceb83c37c7719ca6c27b9b4d930e6c4a22c49c6d40eca0bd85e244 - 35.07% (6.69 MB)

[#002] sha256:82d0e0426b2dcf3cdf8bfcbb7b4d3c858602a608e31f0b71334dd1c68d754b22 - 0.0% (602 Bytes)

[#003] sha256:ed76aa1544073397c39286a7d7e40e055aa92f248fa2bf3817bc495b5952a691 - 0.0% (894 Bytes)

[#004] sha256:ef4cf5a20f8a785c0c83144162c3223df14ede48495548afeeecb97396d4c291 - 0.0% (665 Bytes)

[#005] sha256:9d3441de5d5e30e3209a2b9d4ea2b3fc9878e8dc822430340f496ab71b112331 - 0.01% (1.36 KB)

[#006] sha256:9b7e2f4f3b23ca23a2be93c7d8132642671c91635508d73a9b105816a5a49901 - 33.08% (6.31 MB)

[#007] sha256:44a15fb6a70f00eca469617435012e15a42691694afca275bfb5eb22bdd80472 - 0.0% (143 Bytes)

[#008] sha256:e55801effda67a2a29915fde3903bd3cbbe4a678b1b8ab4ee37159ed8eb65067 - 17.77% (3.39 MB)

[#009] sha256:393e65b47259a141b426dbf2c0bc081925544e381321cffef539c76b6562d915 - 0.0% (816 Bytes)


History
2021-04-14 19:19:39 UTC

/bin/sh -c #(nop) ADD file:8ec69d882e7f29f0652d537557160e638168550f738d0d49f90a7ef96bf31787 in /

2021-04-14 19:19:39 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-04-14 23:14:29 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2021-05-25 15:46:23 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.20.1

2021-05-25 15:46:24 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.5.3

2021-05-25 15:46:24 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1

2021-05-25 15:46:32 UTC

/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} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} " && case "$apkArch" in x86_64|aarch64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && apk add --no-cache --virtual .cert-deps openssl && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk del .cert-deps && apk add -X "https://nginx.org/packages/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 pcre-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && hg clone https://hg.nginx.org/pkg-oss && cd pkg-oss && hg up ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -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 .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.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 .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 && mkdir /docker-entrypoint.d

2021-05-25 15:46:33 UTC

/bin/sh -c #(nop) COPY file:65504f71f5855ca017fb64d502ce873a31b2e0decd75297a8fb0a287f97acf92 in /

2021-05-25 15:46:33 UTC

/bin/sh -c #(nop) COPY file:0b866ff3fc1ef5b03c4e6c8c513ae014f691fb05d530257dfffd07035c1b75da in /docker-entrypoint.d

2021-05-25 15:46:33 UTC

/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d

2021-05-25 15:46:34 UTC

/bin/sh -c #(nop) COPY file:09a214a3e07c919af2fb2d7c749ccbc446b8c10eb217366e5a65640ee9edcc25 in /docker-entrypoint.d

2021-05-25 15:46:34 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2021-05-25 15:46:34 UTC

/bin/sh -c #(nop) EXPOSE 80

2021-05-25 15:46:34 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGQUIT

2021-05-25 15:46:35 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

2021-08-31 10:25:16 UTC

/bin/sh -c apk update && apk upgrade && apk add curl && apk add bash && apk add gettext && apk add shadow && rm -rf /var/cache/apk/*

2021-08-31 10:25:22 UTC

/bin/sh -c mkdir -p web/dist

2021-08-31 10:25:22 UTC

/bin/sh -c #(nop) WORKDIR /web

2021-08-31 10:25:22 UTC

/bin/sh -c #(nop) COPY dir:e3731f27fe84dece9653ed644e76d88df2666d06ab4c304c4c5d436e898218e7 in /web/dist

2021-08-31 10:25:23 UTC

/bin/sh -c #(nop) COPY file:ee240c8f151e69b4da486d486e00a372e41f78a7567e8a3570f27b1f097c35d7 in /etc/nginx/nginx.conf.template

2021-08-31 10:25:23 UTC

/bin/sh -c #(nop) EXPOSE 8000

2021-08-31 10:25:24 UTC

/bin/sh -c #(nop) ENV LONGHORN_MANAGER_IP=http://localhost:9500

2021-08-31 10:25:24 UTC

/bin/sh -c #(nop) CMD ["/bin/bash" "-c" "envsubst '${LONGHORN_MANAGER_IP}' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf && nginx -g 'daemon off;'"]

2021-08-31 10:25:24 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-08-31T10:23:14Z

2021-08-31 10:25:25 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=2b5d4ac95ac8098efb223af0f0b25e4e9935dde9

2021-08-31 10:25:25 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/longhorn/longhorn-ui.git

2021-08-31 10:25:25 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/longhorn/longhorn-ui

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete