Namespace
linuxserver
Image / Tag
heimdall:amd64-js-882cd132-ls49
Content Digest
sha256:62ced57b3516cc9483aaeee9d40425680715a5275277e796a1c9b8d4dd813662
Details
Created

2023-02-08 08:45:20 -0600

Size

129 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- 882cd132-ls49 Build-date:- 2023-02-08T08:40:03-06:00
  • maintainer
    aptalca
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2023-02-08T08:40:03-06:00
  • org.opencontainers.image.description
    [Heimdall](https://heimdall.site) is a way to organise all those links to your most used web sites and web applications in a simple way. Simplicity is the key to Heimdall. Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.
  • org.opencontainers.image.documentation
    https://docs.linuxserver.io/images/docker-heimdall
  • org.opencontainers.image.licenses
    GPL-3.0-only
  • org.opencontainers.image.ref.name
    ec7a36b9f3c7939d4654b881880fdd06a4d9d628
  • org.opencontainers.image.revision
    ec7a36b9f3c7939d4654b881880fdd06a4d9d628
  • org.opencontainers.image.source
    https://github.com/linuxserver/docker-heimdall
  • org.opencontainers.image.title
    Heimdall
  • org.opencontainers.image.url
    https://github.com/linuxserver/docker-heimdall/packages
  • org.opencontainers.image.vendor
    linuxserver.io
  • org.opencontainers.image.version
    882cd132-ls49

Environment
HOME

/app/heimdall

NODE_ENV

production

PATH

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

PS1

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

S6_CMD_WAIT_FOR_SERVICES_MAXTIME

0

TERM

xterm


Layers

[#000] sha256:7d53a9d53e4ca8bae33c811684424bd8454c1bae367a34c0515b928429ae249f - 3.97% (5.11 MB)

[#001] sha256:0ba74a1f96d7d22c671a5e83d498883023efc20284414344c054e168d5f0b1f9 - 2.91% (3.74 MB)

[#002] sha256:f24e53f41e169f779505c78a56bea425ea358852dfc179762d5d9a9d16c72066 - 0.0% (5.44 KB)

[#003] sha256:09d548e21621fb348d8f54c5e6fd4b697b14ffa865dac5b06a26f099e4a1213c - 93.12% (120 MB)

[#004] sha256:4109e1d59f3323f6610ac319297a41420c838e2ad467d39d2802b813c895be8e - 0.0% (708 Bytes)


History
2022-11-29 00:34:04 -0600 (buildkit.dockerfile.v0)

COPY /root-out/ / # buildkit

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

ARG VERSION

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 2446639f-ls50 Build-date:- 2022-11-29T00:32:54-06:00

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

LABEL maintainer=TheLamer

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0

2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)

RUN |2 BUILD_DATE=2022-11-29T00:32:54-06:00 VERSION=2446639f-ls50 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils curl procps shadow tzdata && 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 ****" && rm -rf /tmp/* # buildkit

2022-11-29 00:34:06 -0600 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 00:34:06 -0600 (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

ARG VERSION

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

ARG HEIMDALL_RELEASE

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 882cd132-ls49 Build-date:- 2023-02-08T08:40:03-06:00

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

LABEL maintainer=aptalca

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

ENV HOME=/app/heimdall NODE_ENV=production

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

RUN |3 BUILD_DATE=2023-02-08T08:40:03-06:00 VERSION=882cd132-ls49 HEIMDALL_RELEASE=882cd132 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies curl g++ make python2 && echo "**** install runtime packages ****" && apk add --no-cache nodejs npm && echo "**** install heimdall ****" && mkdir -p /app/heimdall && if [ -z ${HEIMDALL_RELEASE+x} ]; then HEIMDALL_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/heimdalljs/commits/master" | awk '/sha/{print $4;exit}' FS='[""]'); fi && curl -o /tmp/heimdalljs.tar.gz -L "https://github.com/linuxserver/heimdalljs/archive/${HEIMDALL_RELEASE}.tar.gz" && tar xf /tmp/heimdalljs.tar.gz -C /app/heimdall/ --strip-components=1 && cd /app/heimdall && NODE_ENV="development" npm install && cp .env.example .env && npm run build && echo "**** cleanup ****" && npm prune --production && apk del --purge build-dependencies && rm -rf /root/.cache /tmp/* # buildkit

2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

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