2024-04-04 04:26:03 UTC
47.9 MB
/root
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
VIRTUAL_ENV/lsiopy
[#000] sha256:f3cdf5a9e67a9265aace700930576d38687ae4580016f242a6cabf67425c2eb2 - 11.42% (5.47 MB)
[#001] sha256:2298c655b51ec3c154f7e128a2ad95bc06f0595171c61a55634ad2ce0c8d9422 - 0.01% (5.41 KB)
[#002] sha256:88d972d96093dcbef72df0ab42664214679ae0a4745fe08ad0da3530dff02af9 - 0.0% (967 Bytes)
[#003] sha256:d0a00a8685be87328e3a821aff09f4d576694214b3aaee86ff791de81de9871c - 10.75% (5.15 MB)
[#004] sha256:a501911985567b7df0adea111a73ea6727b523ac89c08cdc465a3ad1b6cd55e1 - 0.01% (3.91 KB)
[#005] sha256:bc00a013fa9430596b2e117fba396d93407b9c858e49a93cd86bd85a311c7e0c - 24.74% (11.8 MB)
[#006] sha256:373324826b0821cc0364a0ccebaac6b689fc5b274f3c2b185a0ac628891369cd - 0.02% (8.09 KB)
[#007] sha256:ed47a13753f8437fce67a17bfe34b3178738022ea3427296947388c28d8ec0db - 53.06% (25.4 MB)
COPY /root-out/ / # buildkit
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- fa513ea9-ls11 Build-date:- 2024-03-23T13:27:19+00:00
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)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
2024-03-23 13:28:36 UTC (buildkit.dockerfile.v0)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
2024-03-23 13:28:37 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2024-03-23T13:27:19+00:00 VERSION=fa513ea9-ls11 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
2024-03-23 13:28:37 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2024-03-23 13:28:37 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.24.0-r15_8.3.4-r0-ls15 Build-date:- 2024-03-28T18:49:52+00:00
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=nemchik
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)RUN |2 BUILD_DATE=2024-03-28T18:49:52+00:00 VERSION=1.24.0-r15_8.3.4-r0-ls15 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php83 php83-ctype php83-curl php83-fileinfo php83-fpm php83-iconv php83-json php83-mbstring php83-openssl php83-phar php83-session php83-simplexml php83-xml php83-xmlwriter php83-zip php83-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)" != "php83" ]; then rm -rf /usr/bin/php && ln -s /usr/bin/php83 /usr/bin/php; fi && echo "**** configure php ****" && sed -i "s#;error_log = log/php83/error.log.*#error_log = /config/log/php/error.log#g" /etc/php83/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php83/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php83/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
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2024-03-28 18:51:04 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.24.0-r15-ls266 Build-date:- 2024-04-04T04:23:56+00:00
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)LABEL maintainer=nemchik
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2024-04-04T04:23:56+00:00 VERSION=1.24.0-r15-ls266 NGINX_VERSION=1.24.0-r15 /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); fi && apk add --no-cache memcached nginx==${NGINX_VERSION} nginx-mod-http-brotli==${NGINX_VERSION} nginx-mod-http-dav-ext==${NGINX_VERSION} nginx-mod-http-echo==${NGINX_VERSION} nginx-mod-http-fancyindex==${NGINX_VERSION} nginx-mod-http-geoip==${NGINX_VERSION} nginx-mod-http-geoip2==${NGINX_VERSION} nginx-mod-http-headers-more==${NGINX_VERSION} nginx-mod-http-image-filter==${NGINX_VERSION} nginx-mod-http-perl==${NGINX_VERSION} nginx-mod-http-redis2==${NGINX_VERSION} nginx-mod-http-set-misc==${NGINX_VERSION} nginx-mod-http-upload-progress==${NGINX_VERSION} nginx-mod-http-xslt-filter==${NGINX_VERSION} nginx-mod-mail==${NGINX_VERSION} nginx-mod-rtmp==${NGINX_VERSION} nginx-mod-stream==${NGINX_VERSION} nginx-mod-stream-geoip==${NGINX_VERSION} nginx-mod-stream-geoip2==${NGINX_VERSION} nginx-vim==${NGINX_VERSION} php83-bcmath php83-bz2 php83-dom php83-exif php83-ftp php83-gd php83-gmp php83-imap php83-intl php83-ldap php83-mysqli php83-mysqlnd php83-opcache php83-pdo_mysql php83-pdo_odbc php83-pdo_pgsql php83-pdo_sqlite php83-pear php83-pecl-apcu php83-pecl-memcached php83-pecl-redis php83-pgsql php83-posix php83-soap php83-sockets php83-sodium php83-sqlite3 php83-tokenizer php83-xmlreader php83-xsl && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community php83-pecl-mcrypt && rm -f /etc/nginx/conf.d/stream.conf # buildkit
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2024-04-04 04:26:03 UTC (buildkit.dockerfile.v0)VOLUME [/config]
2024-04-04 04:26:15 UTC
48.9 MB
/root
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
VIRTUAL_ENV/lsiopy
[#000] sha256:5886b6d570c7effe5356ed09383afa91436078cc3d126d92a4b9881d61f28dc7 - 12.04% (5.89 MB)
[#001] sha256:2298c655b51ec3c154f7e128a2ad95bc06f0595171c61a55634ad2ce0c8d9422 - 0.01% (5.41 KB)
[#002] sha256:d334f1d8dd541e47aa6529c1d34ddd84f1cee052664050a8f6c5f218453b8e37 - 0.0% (967 Bytes)
[#003] sha256:29695116a697cd18cb783220d3aab187539a1012ef0acb6149c784a9afd2feb1 - 11.09% (5.42 MB)
[#004] sha256:c27f3a26e01873aa162732c829feee78e49c8b38ddb380480e481fe91e5a4bf0 - 0.01% (3.91 KB)
[#005] sha256:9dbd517eb6250a3549b1263c23f9de35d26f462db2c99b2549a5b652987d2624 - 24.82% (12.1 MB)
[#006] sha256:d19730b77094161e33f21eb2455a4d392106c873339b77bb35087b628263cbca - 0.02% (8.08 KB)
[#007] sha256:fd074dc4b44ce565e54a68a003f22d34bc5d6c549ab95ee29d1702c5b4ea9d76 - 52.01% (25.4 MB)
COPY /root-out/ / # buildkit
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- fa513ea9-ls11 Build-date:- 2024-03-23T13:27:19+00:00
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)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
2024-03-23 13:28:43 UTC (buildkit.dockerfile.v0)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
2024-03-23 13:28:45 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2024-03-23T13:27:19+00:00 VERSION=fa513ea9-ls11 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
2024-03-23 13:28:45 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2024-03-23 13:28:45 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.24.0-r15_8.3.4-r0-ls15 Build-date:- 2024-03-28T18:49:52+00:00
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)LABEL maintainer=nemchik
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)RUN |2 BUILD_DATE=2024-03-28T18:49:52+00:00 VERSION=1.24.0-r15_8.3.4-r0-ls15 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php83 php83-ctype php83-curl php83-fileinfo php83-fpm php83-iconv php83-json php83-mbstring php83-openssl php83-phar php83-session php83-simplexml php83-xml php83-xmlwriter php83-zip php83-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)" != "php83" ]; then rm -rf /usr/bin/php && ln -s /usr/bin/php83 /usr/bin/php; fi && echo "**** configure php ****" && sed -i "s#;error_log = log/php83/error.log.*#error_log = /config/log/php/error.log#g" /etc/php83/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php83/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php83/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
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2024-03-28 18:51:09 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)ARG VERSION
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.24.0-r15-ls266 Build-date:- 2024-04-04T04:23:56+00:00
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)LABEL maintainer=nemchik
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2024-04-04T04:23:56+00:00 VERSION=1.24.0-r15-ls266 NGINX_VERSION=1.24.0-r15 /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); fi && apk add --no-cache memcached nginx==${NGINX_VERSION} nginx-mod-http-brotli==${NGINX_VERSION} nginx-mod-http-dav-ext==${NGINX_VERSION} nginx-mod-http-echo==${NGINX_VERSION} nginx-mod-http-fancyindex==${NGINX_VERSION} nginx-mod-http-geoip==${NGINX_VERSION} nginx-mod-http-geoip2==${NGINX_VERSION} nginx-mod-http-headers-more==${NGINX_VERSION} nginx-mod-http-image-filter==${NGINX_VERSION} nginx-mod-http-perl==${NGINX_VERSION} nginx-mod-http-redis2==${NGINX_VERSION} nginx-mod-http-set-misc==${NGINX_VERSION} nginx-mod-http-upload-progress==${NGINX_VERSION} nginx-mod-http-xslt-filter==${NGINX_VERSION} nginx-mod-mail==${NGINX_VERSION} nginx-mod-rtmp==${NGINX_VERSION} nginx-mod-stream==${NGINX_VERSION} nginx-mod-stream-geoip==${NGINX_VERSION} nginx-mod-stream-geoip2==${NGINX_VERSION} nginx-vim==${NGINX_VERSION} php83-bcmath php83-bz2 php83-dom php83-exif php83-ftp php83-gd php83-gmp php83-imap php83-intl php83-ldap php83-mysqli php83-mysqlnd php83-opcache php83-pdo_mysql php83-pdo_odbc php83-pdo_pgsql php83-pdo_sqlite php83-pear php83-pecl-apcu php83-pecl-memcached php83-pecl-redis php83-pgsql php83-posix php83-soap php83-sockets php83-sodium php83-sqlite3 php83-tokenizer php83-xmlreader php83-xsl && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community php83-pecl-mcrypt && rm -f /etc/nginx/conf.d/stream.conf # buildkit
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2024-04-04 04:26:15 UTC (buildkit.dockerfile.v0)VOLUME [/config]