site (v2)

Published 2023-09-24 15:00:02 +00:00 by mduret

Installation

docker pull novit.tech/demo-faber/site:v2
sha256:2048ea3d380896244b1d391b4355bb6880e50dcee85bffce81dac7f440119730

About this package

[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.

Image Layers

COPY /root-out/ / # buildkit
ARG BUILD_DATE
ARG VERSION
ARG MODS_VERSION=v3
ARG PKG_INST_VERSION=v1
LABEL build_version=Linuxserver.io version:- c84a529a-ls18 Build-date:- 2023-09-02T13:27:56+00:00
LABEL maintainer=TheLamer
ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN |4 BUILD_DATE=2023-09-02T13:27:56+00:00 VERSION=c84a529a-ls18 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd procps-ng 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 /lsiopy && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
COPY root/ / # buildkit
ENTRYPOINT ["/init"]
RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php82 php82-ctype php82-curl php82-fileinfo php82-fpm php82-iconv php82-json php82-mbstring php82-openssl php82-phar php82-session php82-simplexml php82-xml php82-xmlwriter php82-zip php82-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/conf.d/stream.conf && rm -f /etc/nginx/http.d/default.conf && echo "**** guarantee correct php version is symlinked ****" && if [ "$(readlink /usr/bin/php)" != "php82" ]; then rm -rf /usr/bin/php && ln -s /usr/bin/php82 /usr/bin/php; fi && echo "**** configure php ****" && sed -i "s#;error_log = log/php82/error.log.*#error_log = /config/log/php/error.log#g" /etc/php82/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php82/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php82/php-fpm.d/www.conf && echo "**** install php composer ****" && EXPECTED_CHECKSUM="$(php -r 'copy("https://composer.github.io/installer.sig", "php://stdout");')" && php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" && if [ "$EXPECTED_CHECKSUM" != "$ACTUAL_CHECKSUM" ]; then >&2 echo 'ERROR: Invalid installer checksum' && rm composer-setup.php && exit 1; fi && php composer-setup.php --install-dir=/usr/bin && rm composer-setup.php && ln -s /usr/bin/composer.phar /usr/bin/composer && 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
COPY root/ / # buildkit
EXPOSE map[443/tcp:{} 80/tcp:{}]
ENV LSIO_FIRST_PARTY=true
ARG BUILD_DATE
ARG VERSION
ARG HEIMDALL_RELEASE
LABEL build_version=Linuxserver.io version:- v2.5.6-ls230 Build-date:- 2023-09-08T18:29:48+00:00
LABEL maintainer=aptalca
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
RUN |3 BUILD_DATE=2023-09-08T18:29:48+00:00 VERSION=v2.5.6-ls230 HEIMDALL_RELEASE=v2.5.6 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache php82-intl php82-pdo_pgsql php82-pdo_sqlite php82-pdo_mysql php82-tokenizer && echo "**** configure nginx ****" && echo 'fastcgi_param PHP_AUTH_USER $remote_user; # Heimdall user authorization' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PHP_AUTH_PW $http_authorization; # Heimdall user authorization' >> /etc/nginx/fastcgi_params && 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 /tmp/heimdall.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${HEIMDALL_RELEASE}.tar.gz" && mkdir -p /app/www-tmp && tar xf /tmp/heimdall.tar.gz -C /app/www-tmp --strip-components=1 && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
COPY root/ / # buildkit
EXPOSE map[443/tcp:{} 80/tcp:{}]
VOLUME [/config]
COPY dir:47809c914ecc287d779f8a085f70e79629b90c5af0484ff44cbc3ed3124ca432 in /config

Labels

Key Value
build_version Linuxserver.io version:- v2.5.6-ls230 Build-date:- 2023-09-08T18:29:48+00:00
maintainer aptalca
org.opencontainers.image.authors linuxserver.io
org.opencontainers.image.created 2023-09-08T18:29:48+00: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 171f7a06ba7d8e5367b5d1eb1b01e6e82c3a934b
org.opencontainers.image.revision 171f7a06ba7d8e5367b5d1eb1b01e6e82c3a934b
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.6-ls230
Details
Container
2023-09-24 15:00:02 +00:00
21
OCI / Docker
linux/amd64
linuxserver.io
GPL-3.0-only
38 MiB
Versions (2) View all
v2 2023-09-24
v1 2023-09-24