Namespace
linuxserver
Image / Tag
bookstack:arm32v7-v22.11.1-ls55
Content Digest
sha256:8cbbc564be4e7127b9518a8f01ce393e119ad1ac26fc0277e516005b9bfa0676
Details
Created

2022-12-27 17:02:44 UTC

Size

74.8 MB

Content Digest
Labels
  • build_version
    Linuxserver.io version:- v22.11.1-ls55 Build-date:- 2022-12-27T18:01:11+01:00
  • maintainer
    homerr
  • org.opencontainers.image.authors
    linuxserver.io
  • org.opencontainers.image.created
    2022-12-27T18:01:11+01:00
  • org.opencontainers.image.description
    [Bookstack](https://github.com/BookStackApp/BookStack) is a free and open source Wiki designed for creating beautiful documentation. Featuring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease. Powered by SQL and including a Markdown editor for those who prefer it, BookStack is geared towards making documentation more of a pleasure than a chore. For more information on BookStack visit their website and check it out: https://www.bookstackapp.com
  • org.opencontainers.image.documentation
    https://docs.linuxserver.io/images/docker-bookstack
  • org.opencontainers.image.licenses
    GPL-3.0-only
  • org.opencontainers.image.ref.name
    894731d11d703ad96ad6285b02e46bf505f0dc48
  • org.opencontainers.image.revision
    894731d11d703ad96ad6285b02e46bf505f0dc48
  • org.opencontainers.image.source
    https://github.com/linuxserver/docker-bookstack
  • org.opencontainers.image.title
    Bookstack
  • org.opencontainers.image.url
    https://github.com/linuxserver/docker-bookstack/packages
  • org.opencontainers.image.vendor
    linuxserver.io
  • org.opencontainers.image.version
    v22.11.1-ls55

Environment
HOME

/root

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PS1

$(whoami)@$(hostname):$(pwd)\$

S6_CMD_WAIT_FOR_SERVICES_MAXTIME

0

TERM

xterm


Layers

[#000] sha256:dc6c86ad1e724e4fdedbb97a4bc37931dff5a858e84e7c23389422327f638b3d - 6.84% (5.12 MB)

[#001] sha256:ef6ae1866c549240feccec4b080967270b0a2050097d893c8139850f51cf6957 - 6.48% (4.85 MB)

[#002] sha256:eb99b253e9adef2acbfc2edb95889dee08bcccd4001065fbfba8fce78bf1f51a - 0.01% (5.82 KB)

[#003] sha256:4d4335cb8ae169f9417785f7a127937a54c14dbebc6e242e061c4740b5174340 - 15.03% (11.2 MB)

[#004] sha256:dca352022f4f8da2e9e73cd9a34abfdfebd23147382fbe7a7d8a96855e379918 - 0.01% (6.46 KB)

[#005] sha256:6b214437e5e465c6ad063dbeb33fcd461a3c6401baed81e9f5e3a8f7e3bb45e0 - 71.63% (53.6 MB)

[#006] sha256:bea4c82900c7ccf6edc8ae944750953ef6d07d0d4c132896ec2d0acf5170beb0 - 0.0% (3.31 KB)


History
2022-11-29 06:37:02 UTC (buildkit.dockerfile.v0)

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-27 17:02:44 UTC (buildkit.dockerfile.v0)

ARG BUILD_DATE

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

ARG VERSION

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

ARG BOOKSTACK_RELEASE

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

LABEL build_version=Linuxserver.io version:- v22.11.1-ls55 Build-date:- 2022-12-27T18:01:11+01:00

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

LABEL maintainer=homerr

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

ARG BOOKSTACK_RELEASE

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

RUN |4 BUILD_DATE=2022-12-27T18:01:11+01:00 VERSION=v22.11.1-ls55 BOOKSTACK_RELEASE=v22.11.1 BOOKSTACK_RELEASE=v22.11.1 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies composer && echo "**** install runtime packages ****" && apk add --no-cache fontconfig memcached php8-ctype php8-curl php8-dom php8-gd php8-ldap php8-mbstring php8-mysqlnd php8-openssl php8-pdo_mysql php8-pecl-memcached php8-phar php8-simplexml php8-tokenizer qt5-qtbase tar ttf-freefont && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/v3.14/community wkhtmltopdf && echo "**** configure php-fpm to pass env vars ****" && sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php8/php-fpm.d/www.conf && grep -qxF 'clear_env = no' /etc/php8/php-fpm.d/www.conf || echo 'clear_env = no' >> /etc/php8/php-fpm.d/www.conf && echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php8/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 "**** overlay-fs bug workaround ****" && mv /app/www /app/www-tmp && echo "**** cleanup ****" && apk del --purge build-dependencies && rm -rf /root/.composer /tmp/* # buildkit

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

COPY root/ / # buildkit

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

EXPOSE map[443/tcp:{} 80/tcp:{}]

2022-12-27 17:02:44 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

Danger Zone
Delete Tag

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.

Delete