Namespace
linuxserver
Image / Tag
heimdall:amd64-v2.5.4-ls198
Content Digest
sha256:2b73dbc6b6750398f9baf0b23b00e0460587378658f3d66249ad89388263f573
Details
Created

2022-12-25 08:59:30 +0100

Size

49.7 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- v2.5.4-ls198 Build-date:- 2022-12-25T08:58:18+01:00
  • maintainer
    aptalca
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2022-12-25T08:58: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
    fed915b7c76612b0861aaea2093c9223462a8280
  • org.opencontainers.image.revision
    fed915b7c76612b0861aaea2093c9223462a8280
  • 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
    v2.5.4-ls198

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:ce261d1b6aaa2b988d24f4e6578eca21cb8f483e04090bc42bdda99eccaaccbe - 10.28% (5.11 MB)

[#001] sha256:30f60e8ef90267a0b7e3efcb2eb6603cb079bc708f30ff048d05a3844428b330 - 7.63% (3.79 MB)

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

[#003] sha256:f196bcd30b9d478a4585438734ada635af75ec3d2342adb8a41c87be54250179 - 26.25% (13.1 MB)

[#004] sha256:4a1016b16d78c2700c8ee677e1533529cf0650facd13e6615d1721daec909e12 - 0.01% (6.46 KB)

[#005] sha256:2690c4073118294022142c6386ef994554bd61ac72c1115b4c28c8f8ef28d546 - 55.81% (27.8 MB)

[#006] sha256:a8582ae93732160c027686ce27cbd22a17fd0a331e23ec69830b6ed303745ea2 - 0.0% (2.25 KB)


History
2022-11-29 00:36:49 -0600 (buildkit.dockerfile.v0)

COPY /root-out/ / # buildkit

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

ARG VERSION

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

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

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

LABEL maintainer=TheLamer

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

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

2022-11-29 00:36:50 -0600 (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 "**** cleanup ****" && rm -rf /tmp/* # buildkit

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 00:36:50 -0600 (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

2022-11-29 15:46:09 +0100 (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 15:46:09 +0100 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-11-29 15:46:09 +0100 (buildkit.dockerfile.v0)

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

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

ARG VERSION

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

ARG HEIMDALL_RELEASE

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- v2.5.4-ls198 Build-date:- 2022-12-25T08:58:18+01:00

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

LABEL maintainer=aptalca

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

RUN |3 BUILD_DATE=2022-12-25T08:58:18+01:00 VERSION=v2.5.4-ls198 HEIMDALL_RELEASE=v2.5.4 /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/releases/latest" | awk '/tag_name/{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-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-12-25 08:59:30 +0100 (buildkit.dockerfile.v0)

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

2022-12-25 08:59:30 +0100 (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