2018-11-27 22:13:56 UTC
43.4 MB
/root
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)$
TERMxterm
[#000] sha256:78db75302403841f9f16fc2bab36a546d43904b4ce676710106630615a1e9e98 - 5.12% (2.22 MB)
[#001] sha256:d5b17dac924ee6d307e58099aea433428581385cbc2ad9a5e1348e74f3b49b8e - 11.14% (4.83 MB)
[#002] sha256:5419e3b18744a2a8f55453220c4d28401baedf59dc3b84d3c8e84cfbc02569bf - 0.0% (456 Bytes)
[#003] sha256:9a4db69fd6d96aae03e61c7a33a96e6276762e1afc3b2e549161afd914ba4cc3 - 34.7% (15 MB)
[#004] sha256:71f2a60c17080c02b2e406ce032653cd6e642bd84a2d50ae7288908465ade995 - 0.01% (2.79 KB)
[#005] sha256:38a4dc13a85f989cbdd2a0b1d60ba8a39c3d6020bee2bb0b228c749efc67be8e - 49.03% (21.3 MB)
[#006] sha256:f7d5bf7264761a42d7a685235adab96a3ec4f61dd38dae0b380635aa3fb7924a - 0.01% (2.25 KB)
/bin/sh -c #(nop) ADD file:755758c7f1767d26ccee1e10de4cb9cc9564f89d269725cfedbdab5c25697eac in /
2018-11-23 23:09:40 UTC/bin/sh -c #(nop) MAINTAINER sparklyballs
2018-11-23 23:09:40 UTC/bin/sh -c #(nop) ARG OVERLAY_VERSION=v1.21.7.0
2018-11-23 23:09:41 UTC/bin/sh -c #(nop) ARG OVERLAY_ARCH=amd64
2018-11-23 23:09:41 UTC/bin/sh -c #(nop) ENV PS1=$(whoami)@$(hostname):$(pwd)$ HOME=/root TERM=xterm
2018-11-23 23:09:46 UTC|2 OVERLAY_ARCH=amd64 OVERLAY_VERSION=v1.21.7.0 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies curl tar && echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils shadow tzdata && echo "**** add s6 overlay ****" && curl -o /tmp/s6-overlay.tar.gz -L "https://github.com/just-containers/s6-overlay/releases/download/${OVERLAY_VERSION}/s6-overlay-${OVERLAY_ARCH}.tar.gz" && tar xfz /tmp/s6-overlay.tar.gz -C / && 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 "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /tmp/*
2018-11-23 23:09:46 UTC/bin/sh -c #(nop) COPY dir:22123dbed7dc1935bfa9d9027a691284dd0faeb6de2c89ab7b9718b90d91bb18 in /
2018-11-23 23:09:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["/init"]
2018-11-23 23:11:20 UTC/bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git libressl2.7-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 SCRIPT_FILENAME $document_root$fastcgi_script_name;' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/conf.d/default.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf
2018-11-23 23:11:22 UTC/bin/sh -c #(nop) COPY dir:4694e9f61d76086333aabfad51954f9abe3d2e0897959da9049dab942b21f566 in /
2018-11-23 23:11:22 UTC/bin/sh -c #(nop) EXPOSE 443 80
2018-11-23 23:11:24 UTC/bin/sh -c #(nop) VOLUME [/config]
2018-11-27 22:12:35 UTC/bin/sh -c #(nop) ARG BUILD_DATE
2018-11-27 22:12:35 UTC/bin/sh -c #(nop) ARG VERSION
2018-11-27 22:12:36 UTC/bin/sh -c #(nop) LABEL build_version=Linuxserver.io version:- v0.24.3-ls19 Build-date:- 2018-11-27T22:12:03+00:00
2018-11-27 22:12:36 UTC/bin/sh -c #(nop) LABEL maintainer=homerr
2018-11-27 22:12:36 UTC/bin/sh -c #(nop) ARG BOOKSTACK_RELEASE
2018-11-27 22:13:55 UTC|3 BOOKSTACK_RELEASE=v0.24.3 BUILD_DATE=2018-11-27T22:12:03+00:00 VERSION=v0.24.3-ls19 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache curl tar memcached php7-ctype php7-dom php7-gd php7-ldap php7-mbstring php7-memcached php7-mysqlnd php7-openssl php7-pdo_mysql php7-phar php7-simplexml php7-tidy php7-tokenizer && echo "**** configure php-fpm ****" && sed -i 's/;clear_env = no/clear_env = no/g' /etc/php7/php-fpm.d/www.conf && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php7/php-fpm.conf && echo "**** fetch bookstack ****" && mkdir -p /var/www/html && 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 /var/www/html/ --strip-components=1 && echo "**** install composer ****" && cd /tmp && curl -sS https://getcomposer.org/installer | php && mv /tmp/composer.phar /usr/local/bin/composer && echo "**** install composer dependencies ****" && composer install -d /var/www/html/ && echo "**** cleanup ****" && rm -rf /root/.composer /tmp/*
2018-11-27 22:13:55 UTC/bin/sh -c #(nop) COPY dir:8a8a08a72e7bc86d977d3988e7953b8b9729fe120df51433181b049e57af519d in /
2018-11-27 22:13:56 UTC/bin/sh -c #(nop) 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.