2023-07-05 13:03:43 UTC
96.5 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:f2d236b5fa8376caf67770a11d939492bd0cb04c03990fcc54a5f41f16386416 - 5.56% (5.37 MB)
[#001] sha256:8bc286c875142c1488068126123d0139525ffec9e71de614d3c023977ef591a3 - 0.0% (3.92 KB)
[#002] sha256:e68c3e482635dd6bf330ac94ee227988bb188257af2b3c30e161cbf6cfa74278 - 0.0% (967 Bytes)
[#003] sha256:f475ebd8218e1ee98bc013ab639fd588e01e0300b959297c7e8dcd51a24e43ab - 5.1% (4.92 MB)
[#004] sha256:2e67f3be867031234d089660fd2098ba5004f1c37226ecb64f7b78e9901ee4e4 - 0.0% (3.12 KB)
[#005] sha256:80d91f9c51366b14b031ea739e4039500f3cdf97d48dec1c26478fd0bd3c05be - 12.09% (11.7 MB)
[#006] sha256:2d11e1323a74731a13352bb66117c0e4f968d15992d305f8a4dc1a26f15aa13f - 0.01% (8.07 KB)
[#007] sha256:def5dd1e38d36bc1ef5297e9c94c10cba1d80da81b23ce28c52a14bc03e30136 - 77.23% (74.5 MB)
[#008] sha256:ed155ea07ba12dde99290666ddb9a6d9d1e47b79401cbc1587754a18c642b9f9 - 0.0% (3.63 KB)
COPY /root-out/ / # buildkit
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- ac66f10b-ls8 Build-date:- 2023-06-17T13:29:13+00:00
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-06-17 13:30:17 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-06-17 13:30:17 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
2023-06-17 13:30:17 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
2023-06-17 13:30:19 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-06-17T13:29:13+00:00 VERSION=ac66f10b-ls8 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
2023-06-17 13:30:19 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-06-17 13:30:19 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-06-26 13:34:47 UTC (buildkit.dockerfile.v0)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
2023-06-26 13:34:47 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-06-26 13:34:47 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)ARG BOOKSTACK_RELEASE
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- v23.06.1-ls90 Build-date:- 2023-07-05T13:01:28+00:00
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)LABEL maintainer=homerr
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)ARG BOOKSTACK_RELEASE
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-07-05T13:01:28+00:00 VERSION=v23.06.1-ls90 BOOKSTACK_RELEASE=v23.06.1 BOOKSTACK_RELEASE=v23.06.1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache fontconfig mariadb-client memcached php82-dom php82-gd php82-ldap php82-mysqlnd php82-pdo_mysql php82-pecl-memcached php82-tokenizer qt5-qtbase ttf-freefont && echo "**** configure php-fpm to pass env vars ****" && sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php82/php-fpm.d/www.conf && grep -qxF 'clear_env = no' /etc/php82/php-fpm.d/www.conf || echo 'clear_env = no' >> /etc/php82/php-fpm.d/www.conf && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php82/php-fpm.conf && echo "**** fetch bookstack ****" && mkdir -p /app/www && if [ -z ${BOOKSTACK_RELEASE+x} ]; then BOOKSTACK_RELEASE=$(curl -sX GET "https://api.github.com/repos/bookstackapp/bookstack/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]'); fi && curl -o /tmp/bookstack.tar.gz -L "https://github.com/BookStackApp/BookStack/archive/${BOOKSTACK_RELEASE}.tar.gz" && tar xf /tmp/bookstack.tar.gz -C /app/www/ --strip-components=1 && echo "**** install composer dependencies ****" && composer install -d /app/www/ && echo "**** cleanup ****" && rm -rf /tmp/* $HOME/.cache $HOME/.composer # buildkit
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-07-05 13:03:43 UTC (buildkit.dockerfile.v0)VOLUME [/config]
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.