Namespace
longhornio
Image / Tag
longhorn-ui:v1.2.1-rc1
Content Digest
sha256:eb48852fc56ee49e594d4f59c8f1deef2ce59bd84a1d427a43826761547ae5f4
Details
Created

2021-09-16 20:19:44 UTC

Size

16.7 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-09-16T20:17:18Z
  • org.opencontainers.image.revision
    6541ae66a1204e0d74e3f256aee707349d3c6716
  • 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:4e9f2cdf438714c2c4533e28c6c41a89cc6c1b46cf77e54c488db30ca4f5b6f3 - 16.02% (2.68 MB)

[#001] sha256:6cac039d45afcd28b2e51cb132a326feff39367585adff55574e2fffe71c84d5 - 39.96% (6.69 MB)

[#002] sha256:7bbb5e46b36d29dc2c5ecdbf539f6f76018c102319797d3e44b8f3ab9569df76 - 0.0% (602 Bytes)

[#003] sha256:39f6d17c9d38e776707d732aae2b9a8a5c639754f1492a798748d8eb971fd7f0 - 0.01% (894 Bytes)

[#004] sha256:a5f9fd374d3b266932be7799f099bb1fae98942fdd5ce31cf967544822f4f84c - 0.0% (667 Bytes)

[#005] sha256:7d84628ff3188049749f87b0763a2ec0b9a2a2412506f6876e7f759ad60331ec - 0.01% (1.36 KB)

[#006] sha256:78bd8251b7bf00f157b0e4db63d938eb9450941d9a73dc36d51544468f33c23b - 23.43% (3.92 MB)

[#007] sha256:8af7ba48edd1f39a1a54c7f5f2dc7c71cbb5df17a7616fd98d81c5b924273ddd - 0.0% (143 Bytes)

[#008] sha256:179139d917a6c7e47345eb798dd49ea742b6b38a5f3d1727363a418362862805 - 20.56% (3.44 MB)

[#009] sha256:c44faae33d45bb4823b9a55a9aa20da9dae74b5ba338048d93d6ad0aabb1f4ab - 0.0% (817 Bytes)


History
2021-08-31 23:18:16 UTC

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

2021-08-31 23:18:16 UTC

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

2021-09-01 03:12:05 UTC

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

2021-09-01 03:12:06 UTC

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

2021-09-01 03:12:06 UTC

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

2021-09-01 03:12:06 UTC

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

2021-09-01 03:12:13 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-09-01 03:12:13 UTC

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

2021-09-01 03:12:14 UTC

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

2021-09-01 03:12:14 UTC

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

2021-09-01 03:12:14 UTC

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

2021-09-01 03:12:14 UTC

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

2021-09-01 03:12:14 UTC

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

2021-09-01 03:12:15 UTC

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

2021-09-01 03:12:15 UTC

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

2021-09-16 20:19:36 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-09-16 20:19:38 UTC

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

2021-09-16 20:19:41 UTC

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

2021-09-16 20:19:41 UTC

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

2021-09-16 20:19:41 UTC

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

2021-09-16 20:19:42 UTC

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

2021-09-16 20:19:42 UTC

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

2021-09-16 20:19:43 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-09-16 20:19:43 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-09-16T20:17:18Z

2021-09-16 20:19:43 UTC

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

2021-09-16 20:19:44 UTC

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

2021-09-16 20:19:44 UTC

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

Details
Created

2021-09-16 20:28:53 UTC

Size

16.5 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-09-16T20:17:43Z
  • org.opencontainers.image.revision
    6541ae66a1204e0d74e3f256aee707349d3c6716
  • 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:bbf911997326f5b56d515142e8dbdbe01d2f308276938ddbce3ab347584ed8ce - 15.67% (2.59 MB)

[#001] sha256:3ec86f961f8abbb2806f07c6a85b8e6b35d4f9b00c5d557087ba5c640ab1ccda - 40.14% (6.63 MB)

[#002] sha256:2b3e8d2bf2c496983e2ad8ba0c4eefea8f6b38487066d95766751cbf45a7fa8a - 0.0% (601 Bytes)

[#003] sha256:1b49482d52460082f595c6d814082488c67181f35f821dee8818225ce22aaf99 - 0.01% (893 Bytes)

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

[#005] sha256:53338a0700506e68a9055604724dc009aabaec8edd1c2502b84e73b6d665abce - 0.01% (1.36 KB)

[#006] sha256:1d29268fe5d3af3a0aa3ac7aa7c1f77b2b4c182d129d0535bcf1ff440dfcae85 - 23.32% (3.85 MB)

[#007] sha256:745f074d5e3e540b7ca8d30cf2d229f9cefbfacfeb4f5816f2220da44b832fce - 0.0% (141 Bytes)

[#008] sha256:8f837c2de7b3d19eb4f589275547e64fbc57c094c7c806ea230bd699a0e59b32 - 20.85% (3.44 MB)

[#009] sha256:f0b9abb8eda4b77f16327f832dd4bd5e16549c608bee5819d595f0400e389484 - 0.0% (818 Bytes)


History
2021-09-01 02:50:45 UTC

/bin/sh -c #(nop) ADD file:924de68748d5d710724ceb45b3bff9d38eedcad50d5744be4ce74f8f731a791f in /

2021-09-01 02:50:45 UTC

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

2021-09-01 14:36:33 UTC

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

2021-09-01 14:36:33 UTC

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

2021-09-01 14:36:33 UTC

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

2021-09-01 14:36:33 UTC

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

2021-09-01 14:36:40 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-09-01 14:36:40 UTC

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

2021-09-01 14:36:40 UTC

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

2021-09-01 14:36:41 UTC

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

2021-09-01 14:36:41 UTC

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

2021-09-01 14:36:41 UTC

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

2021-09-01 14:36:41 UTC

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

2021-09-01 14:36:41 UTC

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

2021-09-01 14:36:42 UTC

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

2021-09-16 20:28:47 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-09-16 20:28:49 UTC

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

2021-09-16 20:28:50 UTC

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

2021-09-16 20:28:51 UTC

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

2021-09-16 20:28:51 UTC

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

2021-09-16 20:28:51 UTC

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

2021-09-16 20:28:52 UTC

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

2021-09-16 20:28:52 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-09-16 20:28:52 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-09-16T20:17:43Z

2021-09-16 20:28:53 UTC

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

2021-09-16 20:28:53 UTC

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

2021-09-16 20:28:53 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