Namespace
longhornio
Image / Tag
longhorn-ui:3bff1ca
Content Digest
sha256:ad6834198827835258958f440e828e5c967740db7cb8a8d1ce4fac17915e8956
Details
Created

2019-08-06 19:09:58 UTC

Size

293 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

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

3bff1ca


Layers

[#000] sha256:0a4690c5d889e116874bf45dc757b515565a3bd9b0f6c04054d62280bb4f4ecf - 7.32% (21.4 MB)

[#001] sha256:5bbffb93a7a987e70c7af7456eec6692853ecaa86329ea97ba464c631a2d8c63 - 7.26% (21.3 MB)

[#002] sha256:5a805864fc7fb8f63d75cbb7ee15d26e667930958b7b0799ba8bce6677494dd6 - 0.0% (201 Bytes)

[#003] sha256:329ad3b7f3559e6c63bf88b3c310361766d73a419c7005b04a915188c3e8440e - 7.16% (21 MB)

[#004] sha256:72b294e2389b3603193b5283c96f764d179b4bc96022d5615d447f672c12d9af - 3.28% (9.62 MB)

[#005] sha256:12d3e921dfb249bab5910cb0ec70aeda175ba738907061ef74aeb3d3e356fee3 - 8.63% (25.3 MB)

[#006] sha256:0b2f1ae54ee9f97d9249c8b3276f0ecd3a0890d95b8fd54242ad11f27849a89a - 18.76% (55 MB)

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

[#008] sha256:6e4f53074ea780899fe4ad8de99fc72dab6aa091a1da179a195066d75dfd7d94 - 31.28% (91.7 MB)

[#009] sha256:3037c716a9ce24e67f37336c3e407c4a189873e06acf5a17833946ea72c8f92a - 14.3% (41.9 MB)

[#010] sha256:808e0556b9a09874dd2f7fda979dbc2ad40b55ba367cc352e7779f7d1c4f27ed - 0.0% (744 Bytes)

[#011] sha256:5e8f96428a1cb3180ce9837b0b5162fe93b4bd22bbdef7735c917d2a9547b036 - 0.81% (2.39 MB)

[#012] sha256:b9a7eb3412af3e63e1b5d6a7a46278f99921907ecce522e101c06d21af4ce90d - 0.0% (308 Bytes)

[#013] sha256:a706c124254d72347468bd6b9d973294b1486fc642fd9f386c41dbdf9fd137ee - 1.19% (3.47 MB)


History
2019-07-09 21:32:29 UTC

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

2019-07-09 21:32:29 UTC

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

2019-07-17 23:24:18 UTC

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

2019-07-17 23:25:26 UTC

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

2019-07-17 23:25:26 UTC

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

2019-07-17 23:25:27 UTC

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

2019-07-17 23:25:49 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-07-17 23:25:49 UTC

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

2019-07-17 23:25:49 UTC

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

2019-07-17 23:25:50 UTC

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

2019-07-17 23:25:50 UTC

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

2019-07-25 17:24:36 UTC

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

2019-07-25 17:24:48 UTC

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

2019-07-25 17:25:09 UTC

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

2019-07-25 17:25:25 UTC

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

2019-07-25 17:25:25 UTC

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

2019-07-25 17:25:26 UTC

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

2019-07-25 17:26:04 UTC

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

2019-07-25 17:26:18 UTC

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

2019-07-25 17:26:19 UTC

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

2019-08-06 19:09:24 UTC

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

2019-08-06 19:09:24 UTC

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

2019-08-06 19:09:24 UTC

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

2019-08-06 19:09:24 UTC

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

2019-08-06 19:09:25 UTC

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

2019-08-06 19:09:25 UTC

/bin/sh -c #(nop) ENV VERSION=3bff1ca

2019-08-06 19:09:26 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

2019-08-06 19:09:57 UTC

/bin/sh -c npm run build

2019-08-06 19:09:58 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;'"]

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