2022-11-23 10:44:46 -0500
33.2 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:ca660617f3ae917fc553866f6d367741cfb4552400d3ab9eb406b312ac3ecba4 - 15.3% (5.08 MB)
[#001] sha256:8b062058831c18ecdadfda8cc27c5e362090a1e68f812e7edd01f995d3e50061 - 14.52% (4.82 MB)
[#002] sha256:10e2d5fe88df9ea88c723d1637cc366d2ec7a4628ee35d75d106c39a1cf23011 - 0.02% (5.73 KB)
[#003] sha256:0b18c585ce05cdac06584b197623763bd54e977e810e8956a49c6608efed0bb1 - 36.4% (12.1 MB)
[#004] sha256:530fcbaabad7e79a04655e0c1ce6365b74fc03c9ece52f1bf2b19cc793d299c9 - 0.01% (2.81 KB)
[#005] sha256:7a6ca58282c1ae24aebc85a4a7cdfbadc1bbd9011bf7c943ff81f90ea8ef8081 - 33.75% (11.2 MB)
[#006] sha256:10286f4d72018fe971ce588aed3b10352901bfc225a067690a654fb33c183c7a - 0.01% (2.3 KB)
/bin/sh -c #(nop) COPY dir:047696d7e1ec0c349deebc7038af58ca36617f7c7df33d4b3b7457733c1ea0ce in /
2022-11-08 06:37:40 UTC/bin/sh -c #(nop) ARG BUILD_DATE
2022-11-08 06:37:41 UTC/bin/sh -c #(nop) ARG VERSION
2022-11-08 06:37:42 UTC/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- 0fc07006-ls39 Build-date:- 2022-11-08T07:35:54+01:00
2022-11-08 06:37:43 UTC/bin/sh -c #(nop) LABEL maintainer=TheLamer
2022-11-08 06:37:44 UTC/bin/sh -c #(nop) ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0
2022-11-08 06:37:50 UTC|2 BUILD_DATE=2022-11-08T07:35:54+01:00 VERSION=0fc07006-ls39 /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/*
2022-11-08 06:37:52 UTC/bin/sh -c #(nop) COPY dir:b8e824016582ec44ccdbc6d3824f989553b2eb0b67d208d885d0d98f323fbe8f in /
2022-11-08 06:37:52 UTC/bin/sh -c #(nop) ENTRYPOINT ["/init"]
2022-11-08 06:37:53 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.authors=linuxserver.io
2022-11-08 06:37:54 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2022-11-08T07:35:54+01:00
2022-11-08 06:37:55 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.description=baseimage-alpine image by linuxserver.io
2022-11-08 06:37:56 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-baseimage-alpine
2022-11-08 06:37:57 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.licenses=GPL-3.0-only
2022-11-08 06:37:58 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=46e319695ea4684ce6498ca224928e014e36b37c
2022-11-08 06:37:59 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=46e319695ea4684ce6498ca224928e014e36b37c
2022-11-08 06:38:00 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/linuxserver/docker-baseimage-alpine
2022-11-08 06:38:01 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.title=Baseimage-alpine
2022-11-08 06:38:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/linuxserver/docker-baseimage-alpine/packages
2022-11-08 06:38:03 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.vendor=linuxserver.io
2022-11-08 06:38:04 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=0fc07006-ls39
2022-11-10 05:57:21 UTC/bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git libressl3.3-libssl logrotate nano nginx openssl php7 php7-fileinfo php7-fpm php7-json php7-mbstring php7-openssl php7-session php7-simplexml php7-xml php7-xmlwriter php7-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 && rm -f /etc/nginx/http.d/default.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
2022-11-10 05:57:22 UTC/bin/sh -c #(nop) COPY dir:3a04301806164b6b58458c7a385d0a3c0b549d03108ec07e0786bdb82b5fd8cb in /
2022-11-10 05:57:22 UTC/bin/sh -c #(nop) EXPOSE 443 80
2022-11-10 05:57:23 UTC/bin/sh -c #(nop) VOLUME [/config]
2022-11-10 05:57:24 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.authors=linuxserver.io
2022-11-10 05:57:25 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.created=2022-11-10T06:55:56+01:00
2022-11-10 05:57:26 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.description=baseimage-alpine-nginx image by linuxserver.io
2022-11-10 05:57:27 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-baseimage-alpine-nginx
2022-11-10 05:57:28 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.licenses=GPL-3.0-only
2022-11-10 05:57:29 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=150031261cedfa48cb2f3e6b858c1c877db7a966
2022-11-10 05:57:30 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=150031261cedfa48cb2f3e6b858c1c877db7a966
2022-11-10 05:57:31 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.source=https://github.com/linuxserver/docker-baseimage-alpine-nginx
2022-11-10 05:57:32 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.title=Baseimage-alpine-nginx
2022-11-10 05:57:33 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.url=https://github.com/linuxserver/docker-baseimage-alpine-nginx/packages
2022-11-10 05:57:34 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.vendor=linuxserver.io
2022-11-10 05:57:35 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=cf6b5832-ls39
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)ARG VERSION
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)ARG HEIMDALL_RELEASE
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 4a90fdf2-ls198 Build-date:- 2022-11-23T09:43:18-06:00
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2022-11-23T09:43:18-06:00 VERSION=4a90fdf2-ls198 HEIMDALL_RELEASE=4a90fdf2 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache curl php7-ctype php7-pdo_sqlite php7-tokenizer php7-zip && echo "**** install heimdall ****" && mkdir -p /heimdall && if [ -z ${HEIMDALL_RELEASE+x} ]; then HEIMDALL_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/commits/2.x" | awk '/sha/{print $4;exit}' FS='[""]'); fi && curl -o /heimdall/heimdall.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${HEIMDALL_RELEASE}.tar.gz" && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2022-11-23 10:44:46 -0500 (buildkit.dockerfile.v0)COPY root/ / # buildkit
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.