Namespace
longhornio
Image / Tag
longhorn-ui:v1.1.1-preview1
Content Digest
sha256:67ea9953a505cc35680aea268b6b69c76fa6f53c92941b95ef9b870ce0653345
Details
Created

2021-03-18 02:00:38 UTC

Size

17.3 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-03-18T01:58:25Z
  • org.opencontainers.image.revision
    8a98fd813ed477d0438d931961433c98ac96455a
  • 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.19.6

NJS_VERSION

0.5.0

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:801bfaa63ef2094d770c809815b9e2b9c1194728e5e754ef7bc764030e140cea - 15.41% (2.67 MB)

[#001] sha256:b1242e25d28452a7ebfd93d40d8f8b2629a05f4805e40b23ee109f49da5645b5 - 38.04% (6.59 MB)

[#002] sha256:7453d3e6b909a42e8ab2ae94425962629cbf5415ba5baed93171b37ee576fe1c - 0.0% (600 Bytes)

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

[#004] sha256:e295e0624aa3268544bd2a4efaa6b471db1f4e5340ffa94f145ff05008cd7f37 - 0.0% (666 Bytes)

[#005] sha256:15a8692cb0bdb1eaba1b3a55c715d318eda7a7718fc73da0bb00fe0c5ec9d929 - 27.66% (4.79 MB)

[#006] sha256:8b9e7da31f09f44aaee556f2295fa2471a7a2b59a356f63a1f1e44507a7da3c9 - 0.0% (143 Bytes)

[#007] sha256:95d939d4a904ec6434f29834f125523a842a3ac85e2d516ec9035e7b30796eb4 - 18.88% (3.27 MB)

[#008] sha256:e69ea166b32aca2055a7ba355441995e4697edd7fa12807fe516d46a7002864e - 0.0% (787 Bytes)


History
2020-12-17 00:19:41 UTC

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

2020-12-17 00:19:42 UTC

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

2020-12-17 15:01:06 UTC

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

2020-12-17 15:01:06 UTC

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

2020-12-17 15:01:06 UTC

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

2020-12-17 15:01:07 UTC

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

2020-12-17 15:01:12 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) 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/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 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

2020-12-17 15:01:12 UTC

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

2020-12-17 15:01:12 UTC

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

2020-12-17 15:01:13 UTC

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

2020-12-17 15:01:13 UTC

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

2020-12-17 15:01:13 UTC

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

2020-12-17 15:01:13 UTC

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

2020-12-17 15:01:13 UTC

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

2021-03-18 02:00:34 UTC

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

2021-03-18 02:00:35 UTC

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

2021-03-18 02:00:36 UTC

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

2021-03-18 02:00:36 UTC

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

2021-03-18 02:00:36 UTC

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

2021-03-18 02:00:37 UTC

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

2021-03-18 02:00:37 UTC

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

2021-03-18 02:00:37 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-03-18 02:00:37 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-03-18T01:58:25Z

2021-03-18 02:00:38 UTC

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

2021-03-18 02:00:38 UTC

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

2021-03-18 02:00:38 UTC

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

Details
Created

2021-03-18 02:09:10 UTC

Size

17.1 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.opencontainers.image.created
    2021-03-18T01:58:39Z
  • org.opencontainers.image.revision
    8a98fd813ed477d0438d931961433c98ac96455a
  • 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.19.6

NJS_VERSION

0.5.0

PATH

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

PKG_RELEASE

1


Layers

[#000] sha256:159e5727ea618dfe8b08811112e2c51f5bd2b9ae7db9eb214914a65249f70ca0 - 15.13% (2.58 MB)

[#001] sha256:5b6872e6b6e61dd61170d37195d2c7e95be595af16f13e483ed7e2cd9d7ae090 - 38.3% (6.54 MB)

[#002] sha256:11265c7c6e925dcc057396a224b4a8fc2eeb0e23532c6ba4be0db84ee5a78199 - 0.0% (602 Bytes)

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

[#004] sha256:2451c79c24f7819bcafffc844af1bc6fa32b805720cf6ce47cf04d0e515e464b - 0.0% (666 Bytes)

[#005] sha256:006d79cd0845e12fc563573e723834ec28fe72d601888d4688a777e5716eab4e - 27.42% (4.68 MB)

[#006] sha256:254bc024d32446c40562c202ab0cc3f0bae154b1781d5c521d785c1616eab6f9 - 0.0% (143 Bytes)

[#007] sha256:6f325fc9801743034fdb81b0b7918ef69f866fc6b49999fba4a817b724c6be2d - 19.14% (3.27 MB)

[#008] sha256:5612e219f57efaf53f4f1845b64dfbca227e862da9a0fc5e5095da7a621f7bbf - 0.0% (788 Bytes)


History
2020-12-16 23:40:26 UTC

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

2020-12-16 23:40:29 UTC

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

2020-12-17 01:45:10 UTC

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

2020-12-17 01:45:10 UTC

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

2020-12-17 01:45:11 UTC

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

2020-12-17 01:45:12 UTC

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

2020-12-17 01:49:05 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) 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/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 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

2020-12-17 01:49:07 UTC

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

2020-12-17 01:49:07 UTC

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

2020-12-17 01:49:08 UTC

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

2020-12-17 01:49:09 UTC

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

2020-12-17 01:49:10 UTC

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

2020-12-17 01:49:11 UTC

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

2020-12-17 01:49:12 UTC

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

2021-03-18 02:09:05 UTC

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

2021-03-18 02:09:07 UTC

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

2021-03-18 02:09:07 UTC

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

2021-03-18 02:09:08 UTC

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

2021-03-18 02:09:08 UTC

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

2021-03-18 02:09:09 UTC

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

2021-03-18 02:09:09 UTC

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

2021-03-18 02:09:09 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-03-18 02:09:10 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2021-03-18T01:58:39Z

2021-03-18 02:09:10 UTC

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

2021-03-18 02:09:10 UTC

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

2021-03-18 02:09:10 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