Namespace
longhornio
Image / Tag
longhorn-ui:v1.0.0-rc3
Content Digest
sha256:23f008c233713d3a633fcec9832172a6e06485f63dcae9a0423a476404c0fc2c
Details
Created

2020-05-28 22:15:08 UTC

Size

305 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
  • org.label-schema.build-date
    2020-05-28T22:12:25Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    6eb2554fccdad58a7d5daad467b8c0c22c535456
  • org.label-schema.vcs-url
    https://github.com/longhorn/longhorn-ui.git

Environment
LONGHORN_MANAGER_IP

http://localhost:9500

NGINX_VERSION

1.16.0

NJS_VERSION

0.3.1

PATH

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

PKG_RELEASE

1~stretch

VERSION

v1.0.0-rc3


Layers

[#000] sha256:9fc222b64b0a005c742f1b50f03986a7f768d41434994430718917d88fefe567 - 7.04% (21.5 MB)

[#001] sha256:30e9fc7d9c5bf599b163731f209c0d64efec30216fc4aed7d2b1b478676207c1 - 6.97% (21.3 MB)

[#002] sha256:4b3a8aeaa40ebf9bc1c3e9f0d9f3a926831d3707bee39d38c97369f3072314fe - 0.0% (201 Bytes)

[#003] sha256:559cbbc574e998864bc72ee7ae627a779a0a3998bdf7055211f9212cd5495a7c - 6.89% (21 MB)

[#004] sha256:ec767935479223dfd89ba01af06d7f9d730691f6f8252136df36fce35766a41e - 3.23% (9.86 MB)

[#005] sha256:0ae1c54d5486aefdfe42c2518639d1dc85258db50ed503d3b890414c1dc70f6d - 8.72% (26.6 MB)

[#006] sha256:35a16a39828e7286ff67046e216c048df0134b59a68ff3eace580bf181e46be0 - 18.65% (56.9 MB)

[#007] sha256:e825f817fbaedbe0d78b511acb1497f9e0578985a2801f6dc8f00ec3c92f5c00 - 0.0% (1.44 KB)

[#008] sha256:55da104f5b413c74938ac653e56582fc6db73ce812d4357fc7666cb853091e82 - 31.47% (96 MB)

[#009] sha256:09433fdc9322111b1c46df860af7e47f2b16911737dadd889c9f39eeaa89d01d - 14.25% (43.5 MB)

[#010] sha256:8c328a740c83893a6cf8c3807c0603c27e0822a7ee15933b5ab64ba4bced4b0c - 0.0% (743 Bytes)

[#011] sha256:cd08d9f4506f10753b4207037ff6960d63f52e8d87c295a8de9f44477978f71f - 0.51% (1.55 MB)

[#012] sha256:49771c56bee8b5f468bec1704f0500610762c9057b7fbb0fad1f911b853df2ef - 0.0% (316 Bytes)

[#013] sha256:fc101edc5b4a0ef699a8df771eeb58b51408a241160c2d4ea396479df9f7f396 - 2.28% (6.96 MB)


History
2019-08-14 00:25:01 UTC

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

2019-08-14 00:25:02 UTC

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

2019-08-14 07:27:39 UTC

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

2019-08-14 07:27:39 UTC

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

2019-08-14 07:27:39 UTC

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

2019-08-14 07:27:40 UTC

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

2019-08-14 07:28:11 UTC

/bin/sh -c set -x && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 apt-transport-https ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --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; 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}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ stretch nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ stretch nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && 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 && apt-get remove --purge --auto-remove -y apt-transport-https ca-certificates && 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

2019-08-14 07:28:12 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2019-08-14 07:28:12 UTC

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

2019-08-14 07:28:13 UTC

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

2019-08-14 07:28:13 UTC

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

2020-05-28 22:12:38 UTC

/bin/sh -c apt-get update -y && apt-get install -y curl libcurl3 libcurl3-dev ngrep gnupg

2020-05-28 22:12:48 UTC

/bin/sh -c curl -sL https://deb.nodesource.com/setup_10.x | bash -

2020-05-28 22:12:56 UTC

/bin/sh -c apt-get install -y nodejs

2020-05-28 22:13:11 UTC

/bin/sh -c apt-get install -y build-essential

2020-05-28 22:13:12 UTC

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

2020-05-28 22:13:12 UTC

/bin/sh -c #(nop) COPY file:520e4ab5a657bd026f314d412bbd8fc5f983dde24941f4a55aaf4953de1e5165 in /tmp/package.json

2020-05-28 22:14:03 UTC

/bin/sh -c cd /tmp && npm install

2020-05-28 22:14:19 UTC

/bin/sh -c mkdir -p /web && cp -a /tmp/node_modules /web

2020-05-28 22:14:20 UTC

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

2020-05-28 22:14:21 UTC

/bin/sh -c #(nop) COPY dir:09044db30714fc1e8f88b3b4d37ba90a79fcbdc75855cbbea89cc906f171488f in /web

2020-05-28 22:14:21 UTC

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

2020-05-28 22:14:22 UTC

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

2020-05-28 22:14:22 UTC

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

2020-05-28 22:14:22 UTC

/bin/sh -c #(nop) ARG VERSION

2020-05-28 22:14:22 UTC

/bin/sh -c #(nop) ENV VERSION=v1.0.0-rc3

2020-05-28 22:14:24 UTC

/bin/sh -c envsubst '${VERSION}' < /web/src/utils/config.js > /web/src/utils/config.js.subst && mv /web/src/utils/config.js.subst /web/src/utils/config.js

2020-05-28 22:15:07 UTC

/bin/sh -c npm run build

2020-05-28 22:15:07 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;'"]

2020-05-28 22:15:07 UTC

/bin/sh -c #(nop) LABEL org.label-schema.build-date=2020-05-28T22:12:25Z

2020-05-28 22:15:08 UTC

/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0

2020-05-28 22:15:08 UTC

/bin/sh -c #(nop) LABEL org.label-schema.vcs-ref=6eb2554fccdad58a7d5daad467b8c0c22c535456

2020-05-28 22:15:08 UTC

/bin/sh -c #(nop) LABEL org.label-schema.vcs-url=https://github.com/longhorn/longhorn-ui.git

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