Namespace
linuxserver
Image / Tag
librespeed:arm32v7-5.2.5-ls126
Content Digest
sha256:9c87cf41a6f5a1ea2ba88f5c2a05307e8fbd781b2822a78a000df7d50cfb6000
Details
Created

2023-01-24 04:55:37 UTC

Size

26.2 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- 5.2.5-ls126 Build-date:- 2023-01-23T22:54:22-06:00
  • maintainer
    aptalca
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2023-01-23T22:54:22-06:00
  • org.opencontainers.image.description
    [Librespeed](https://github.com/librespeed/speedtest) is a very lightweight Speedtest implemented in Javascript, using XMLHttpRequest and Web Workers. No Flash, No Java, No Websocket, No Bullshit.
  • org.opencontainers.image.documentation
    https://docs.linuxserver.io/images/docker-librespeed
  • org.opencontainers.image.licenses
    GPL-3.0-only
  • org.opencontainers.image.ref.name
    b91b9faef387b984ed7d9cea3bc9897cb0a8128d
  • org.opencontainers.image.revision
    b91b9faef387b984ed7d9cea3bc9897cb0a8128d
  • org.opencontainers.image.source
    https://github.com/linuxserver/docker-librespeed
  • org.opencontainers.image.title
    Librespeed
  • org.opencontainers.image.url
    https://github.com/linuxserver/docker-librespeed/packages
  • org.opencontainers.image.vendor
    linuxserver.io
  • org.opencontainers.image.version
    5.2.5-ls126

Environment
HOME

/root

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:9a6b3cb90559e48cb5ea1f7df6250f41d5973b7821d8c45ee9e08d690f1cf2e2 - 19.52% (5.12 MB)

[#001] sha256:8d99936e1b0c68c6c52a3d9ee939e11eb096809ae699c94143c97fc67aa25338 - 18.5% (4.85 MB)

[#002] sha256:6a3a9cf37faf2a8a4242ebb21395755476534b9215d0bf111f4708b777834e78 - 0.02% (5.28 KB)

[#003] sha256:c7b47a53500483cca015e3d0f925e2043bf84977139c67ba994983170e0ef631 - 42.91% (11.2 MB)

[#004] sha256:619490124288ad0666171fb0c095cd48bb3cf33b1339f43f74b56f1c9b2a6aeb - 0.02% (6.46 KB)

[#005] sha256:ff7474d7932dbeb224e7ea103b43359739ab4f06d1882e44f2ec724873449a44 - 19.0% (4.98 MB)

[#006] sha256:2a197d158d91ae19e17eccccfdb0d3639c4df82ea43e54b32a4ed3734c36c2f1 - 0.02% (5.19 KB)


History
2023-01-02 09:50:10 -0500 (buildkit.dockerfile.v0)

COPY /root-out/ / # buildkit

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

ARG BUILD_DATE

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

ARG VERSION

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 3a58d774-ls37 Build-date:- 2023-01-02T15:48:47+01:00

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

LABEL maintainer=TheLamer

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

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

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

RUN |2 BUILD_DATE=2023-01-02T15:48:47+01:00 VERSION=3a58d774-ls37 /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-arm-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static" && chmod +x /usr/bin/qemu-arm-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2023-01-02 09:50:15 -0500 (buildkit.dockerfile.v0)

ENTRYPOINT ["/init"]

2023-01-19 05:56:13 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

2023-01-19 05:56:13 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2023-01-19 05:56:13 UTC (buildkit.dockerfile.v0)

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

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

ARG BUILD_DATE

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

ARG VERSION

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

ARG LIBRESPEED_RELEASE

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- 5.2.5-ls126 Build-date:- 2023-01-23T22:54:22-06:00

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

LABEL maintainer=aptalca

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

RUN |3 BUILD_DATE=2023-01-23T22:54:22-06:00 VERSION=5.2.5-ls126 LIBRESPEED_RELEASE=5.2.5 /bin/sh -c echo "**** install packages ****" && apk add --no-cache curl php8-ctype php8-gd php8-mysqli php8-pdo_pgsql php8-pdo_sqlite && echo "**** install librespeed ****" && if [ -z ${LIBRESPEED_RELEASE+x} ]; then LIBRESPEED_RELEASE=$(curl -sX GET "https://api.github.com/repos/librespeed/speedtest/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]'); fi && mkdir -p /app/www/public && curl -o /tmp/librespeed.tar.gz -L "https://github.com/librespeed/speedtest/archive/${LIBRESPEED_RELEASE}.tar.gz" && tar xf /tmp/librespeed.tar.gz -C /app/www/public --strip-components=1 && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2023-01-24 04:55:37 UTC (buildkit.dockerfile.v0)

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

2023-01-24 04:55:37 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