2022-12-23 13:30:57 UTC
50.9 MB
/root
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_BEHAVIOUR_IF_STAGE2_FAILS2
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
TERMxterm
[#000] sha256:dc6c86ad1e724e4fdedbb97a4bc37931dff5a858e84e7c23389422327f638b3d - 10.06% (5.12 MB)
[#001] sha256:ef6ae1866c549240feccec4b080967270b0a2050097d893c8139850f51cf6957 - 9.53% (4.85 MB)
[#002] sha256:eb99b253e9adef2acbfc2edb95889dee08bcccd4001065fbfba8fce78bf1f51a - 0.01% (5.82 KB)
[#003] sha256:4d4335cb8ae169f9417785f7a127937a54c14dbebc6e242e061c4740b5174340 - 22.11% (11.2 MB)
[#004] sha256:dca352022f4f8da2e9e73cd9a34abfdfebd23147382fbe7a7d8a96855e379918 - 0.01% (6.46 KB)
[#005] sha256:a3bc64dc6a6b4d85b3bf92efac3c200921fc4d39e4f6fc03bb2c4f53390db792 - 58.27% (29.6 MB)
[#006] sha256:256fed955c9e98a0926661f9b5823cec1f78305693eddfad5e4e915d1a8e8685 - 0.0% (303 Bytes)
COPY /root-out/ / # buildkit
2022-11-29 06:37:06 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-11-29 06:37:06 UTC (buildkit.dockerfile.v0)ARG VERSION
2022-11-29 06:37:06 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:37:06 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2022-11-29 06:37:06 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0
2022-11-29 06:37:06 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-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
2022-11-29 06:37:06 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-11-29 06:37:06 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2022-11-29 14:46:19 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:19 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-11-29 14:46:19 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)ARG VERSION
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.20.2-r1-ls203 Build-date:- 2022-12-23T07:29:35-06:00
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2022-12-23T07:29:35-06:00 VERSION=1.20.2-r1-ls203 NGINX_VERSION=1.20.2-r1 /bin/sh -c apk add --no-cache --upgrade curl && if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/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 --upgrade 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-nchan==${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} php8-bcmath php8-bz2 php8-ctype php8-curl php8-dom php8-exif php8-ftp php8-gd php8-gmp php8-iconv php8-imap php8-intl php8-ldap php8-mysqli php8-mysqlnd php8-opcache php8-pdo_mysql php8-pdo_odbc php8-pdo_pgsql php8-pdo_sqlite php8-pear php8-pecl-apcu php8-pecl-mailparse php8-pecl-mcrypt php8-pecl-memcached php8-pecl-redis php8-pgsql php8-phar php8-posix php8-soap php8-sockets php8-sodium php8-sqlite3 php8-tokenizer php8-xml php8-xmlreader php8-xsl php8-zip && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing php8-pecl-xmlrpc # buildkit
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2022-12-23 13:30:57 UTC (buildkit.dockerfile.v0)VOLUME [/config]