Namespace
linuxserver
Image / Tag
heimdall:arm64v8-development-bd76efc6-ls216
Content Digest
sha256:71892289bd6fd4382219045a2b0817f0b973b698518d55f2b4dc38592222a2e0
Details
Created

2022-11-29 21:41:33 UTC

Size

50.9 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- bd76efc6-ls216 Build-date:- 2022-11-29T22:40:18+01:00
  • maintainer
    aptalca
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2022-11-29T22:40:18+01: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
    3e1901cc5c2b11e264b97ff035b69ea5f0bb3239
  • org.opencontainers.image.revision
    3e1901cc5c2b11e264b97ff035b69ea5f0bb3239
  • 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
    bd76efc6-ls216

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

S6_CMD_WAIT_FOR_SERVICES_MAXTIME

0

TERM

xterm


Layers

[#000] sha256:3ffe87f5d188009587ebacf4ac3e220f5e5d38459951ab2a70d71890f34f331f - 10.52% (5.35 MB)

[#001] sha256:dbfe3b6fe87c8f019dcae5e6ec1fc50cda7c07103b6141727e1dc3f8e479540e - 10.7% (5.44 MB)

[#002] sha256:5872d66290a2984bcebdfbe8e43c0e4b85818def5fc0fec92e6bb58ddc19167b - 0.01% (5.82 KB)

[#003] sha256:b9df1bd69e278b1bcd553a24cb90e2457e259c6bc5bab8f8c6b9d56a383f8728 - 25.65% (13 MB)

[#004] sha256:0e55bf5596b61965a4fef25e49d24e18b0f6ec7d65a13581e71d1217fcaedd9b - 0.01% (6.46 KB)

[#005] sha256:792b619f7da932174fe15324bd9a1e13b8e7dde0b2a1d566175d6749a6e7a643 - 53.11% (27 MB)

[#006] sha256:8ba235648e957b8c726c32656d06ca04542d99b4ca88e4ba34b6bc399c43aa2c - 0.0% (2.24 KB)


History
2022-11-29 06:36:51 UTC (buildkit.dockerfile.v0)

COPY /root-out/ / # buildkit

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

ARG VERSION

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- b01a8a64-ls35 Build-date:- 2022-11-29T00:35:38-06:00

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

LABEL maintainer=TheLamer

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

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

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

RUN |2 BUILD_DATE=2022-11-29T00:35:38-06:00 VERSION=b01a8a64-ls35 /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 "**** add qemu ****" && curl -o /usr/bin/qemu-aarch64-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static" && chmod +x /usr/bin/qemu-aarch64-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 06:36:52 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

2022-11-29 14:46:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php8 php8-fileinfo php8-fpm php8-json php8-mbstring php8-openssl php8-session php8-simplexml php8-xml php8-xmlwriter php8-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param HTTP_PROXY ""; # https://httpoxy.org/' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PATH_INFO $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SERVER_NAME $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/http.d/default.conf && echo "**** configure php ****" && ln -s /usr/bin/php8 /usr/bin/php && sed -i "s#;error_log = log/php8/error.log.*#error_log = /config/log/php/error.log#g" /etc/php8/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php8/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php8/php-fpm.d/www.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf && sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g' /etc/periodic/daily/logrotate # buildkit

2022-11-29 14:46:16 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 14:46:16 UTC (buildkit.dockerfile.v0)

EXPOSE map[443/tcp:{} 80/tcp:{}]

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

ARG VERSION

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

ARG HEIMDALL_RELEASE

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- bd76efc6-ls216 Build-date:- 2022-11-29T22:40:18+01:00

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

LABEL maintainer=aptalca

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

RUN |3 BUILD_DATE=2022-11-29T22:40:18+01:00 VERSION=bd76efc6-ls216 HEIMDALL_RELEASE=bd76efc6 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache --upgrade curl php8-ctype php8-curl php8-intl php8-pdo_pgsql php8-pdo_sqlite php8-pdo_mysql php8-tokenizer php8-zip tar && echo "**** install heimdall ****" && mkdir -p /heimdall && if [ -z ${HEIMDALL_RELEASE+x} ]; then HEIMDALL_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/commits/2.x" | awk '/sha/{print $4;exit}' FS='[""]'); fi && curl -o /heimdall/heimdall.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${HEIMDALL_RELEASE}.tar.gz" && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

EXPOSE map[443/tcp:{} 80/tcp:{}]

2022-11-29 21:41:33 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

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