Namespace
linuxserver
Image / Tag
heimdall:6
Content Digest
sha256:976c672efd2b1b75b0bf922264e56fd01b316c0d6f7df03729e488f11538d85b
Details
Created

2018-02-08 18:59:19 UTC

Size

32.2 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- 6 Build-date:- February-08-2018-18:59:00-UTC
  • maintainer
    aptalca

Environment
HOME

/root

PATH

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

PS1

$(whoami)@$(hostname):$(pwd)$

S6_BEHAVIOUR_IF_STAGE2_FAILS

2

TERM

xterm


Layers

[#000] sha256:df30bb487a609df85152f5d71d761956bc065184e57b4e9314c8e41f17ddfc90 - 6.46% (2.08 MB)

[#001] sha256:13f2007b659e9ef39255da1809500f099d06d54202060ed3020004d093582c24 - 20.88% (6.73 MB)

[#002] sha256:bd022836b126386c4ad341cc75a4ab7de8d5dbb30c216cfcb5db0a1c5aac9195 - 0.0% (457 Bytes)

[#003] sha256:dcb0ef6009445014c83d8f5b1631c75bd6953801ccdbe8ca3a882345895cd20d - 44.97% (14.5 MB)

[#004] sha256:ee24300b2ba1e17a7b8ab8fd64e3f7bf9fb1f2ee2d7b6b24dd7ea46e91f778e9 - 0.01% (2.6 KB)

[#005] sha256:9921e0817f27a6f488864b2b4268e77768abefb8798ef72ff202e162d3306c64 - 27.67% (8.91 MB)

[#006] sha256:2f46170de46bace5bb1d6804044945c4b420b239450d3e242215784ea0185c09 - 0.0% (1.46 KB)


History
2018-02-02 23:04:03 UTC

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

2018-02-02 23:04:03 UTC

/bin/sh -c #(nop) MAINTAINER sparklyballs

2018-02-02 23:04:04 UTC

/bin/sh -c #(nop) ARG OVERLAY_VERSION=v1.21.2.2

2018-02-02 23:04:05 UTC

/bin/sh -c #(nop) ARG OVERLAY_ARCH=amd64

2018-02-02 23:04:05 UTC

/bin/sh -c #(nop) ENV PS1=$(whoami)@$(hostname):$(pwd)$ HOME=/root TERM=xterm

2018-02-02 23:04:13 UTC

|2 OVERLAY_ARCH=amd64 OVERLAY_VERSION=v1.21.2.2 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies curl tar && echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils shadow tzdata && echo "**** add s6 overlay ****" && curl -o /tmp/s6-overlay.tar.gz -L "https://github.com/just-containers/s6-overlay/releases/download/${OVERLAY_VERSION}/s6-overlay-${OVERLAY_ARCH}.tar.gz" && tar xfz /tmp/s6-overlay.tar.gz -C / && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults && echo "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /tmp/*

2018-02-02 23:04:14 UTC

/bin/sh -c #(nop) COPY dir:607a2721826ddc0068c4282f4f8161c63b31de2ead104454d97fd090be7e5e0c in /

2018-02-02 23:04:15 UTC

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

2018-02-06 10:39:41 UTC

/bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git libressl2.6-libssl logrotate nano nginx openssl php7 php7-fileinfo php7-fpm php7-json php7-mbstring php7-openssl php7-session php7-simplexml php7-xml php7-xmlwriter php7-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/conf.d/default.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf

2018-02-06 10:39:42 UTC

/bin/sh -c #(nop) COPY dir:7120cf468730adef2fbfabc938ea22edbf0012ea78b9992bd0ebfb463bedd233 in /

2018-02-06 10:39:42 UTC

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

2018-02-06 10:39:42 UTC

/bin/sh -c #(nop) VOLUME [/config]

2018-02-08 18:59:10 UTC

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

2018-02-08 18:59:10 UTC

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

2018-02-08 18:59:10 UTC

/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- 6 Build-date:- February-08-2018-18:59:00-UTC

2018-02-08 18:59:10 UTC

/bin/sh -c #(nop) LABEL maintainer=aptalca

2018-02-08 18:59:10 UTC

/bin/sh -c #(nop) ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2

2018-02-08 18:59:18 UTC

|2 BUILD_DATE=February-08-2018-18:59:00-UTC VERSION=6 /bin/sh -c apk add --no-cache curl php7-ctype php7-pdo_sqlite php7-tokenizer tar && echo "**** install heimdall ****" && VERSION="$(curl -sX GET https://api.github.com/repos/linuxserver/Heimdall/releases/latest | grep 'tag_name' | cut -d\" -f4)" && mkdir -p /var/www/localhost/heimdall && curl -o /tmp/heimdall.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${VERSION}.tar.gz" && tar xf /tmp/heimdall.tar.gz -C /var/www/localhost/heimdall --strip-components=1 && echo "** cleanup **" && rm -rf /tmp/*

2018-02-08 18:59:19 UTC

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

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