docker-dokuwiki-debian12 (sha256:d735c47f31f139681ecae28e32cfe49e2d9b223d9cb5a04b7de49518d3fc62cc)
Installation
docker pull git.cooltux.net/marko/docker-dokuwiki-debian12@sha256:d735c47f31f139681ecae28e32cfe49e2d9b223d9cb5a04b7de49518d3fc62cc
sha256:d735c47f31f139681ecae28e32cfe49e2d9b223d9cb5a04b7de49518d3fc62cc
About this package
Application packaged by Broadcom, Inc.
Image Layers
ARG TARGETARCH=amd64 |
LABEL com.vmware.cp.artifact.flavor=sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83 org.opencontainers.image.base.name=docker.io/bitnami/minideb:bookworm org.opencontainers.image.created=2024-12-17T08:30:12Z org.opencontainers.image.description=Application packaged by Broadcom, Inc. org.opencontainers.image.documentation=https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki/README.md org.opencontainers.image.licenses=Apache-2.0 org.opencontainers.image.ref.name=20241217.1.0-debian-12-r14 org.opencontainers.image.source=https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki org.opencontainers.image.title=dokuwiki org.opencontainers.image.vendor=Broadcom, Inc. org.opencontainers.image.version=20241217.1.0 |
ENV HOME=/ OS_ARCH=amd64 OS_FLAVOUR=debian-12 OS_NAME=linux |
COPY prebuildfs / # buildkit |
SHELL [/bin/bash -o errexit -o nounset -o pipefail -c] |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c install_packages acl ca-certificates curl ldap-utils libbrotli1 libbsd0 libbz2-1.0 libcom-err2 libcrypt1 libcurl4 libexpat1 libffi8 libfftw3-double3 libfontconfig1 libfreetype6 libgcc-s1 libgcrypt20 libglib2.0-0 libgmp10 libgnutls30 libgomp1 libgpg-error0 libgssapi-krb5-2 libhashkit2 libhogweed6 libicu72 libidn2-0 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.5-0 libldap-common liblqr-1-0 libltdl7 liblzma5 libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmd0 libmemcached11 libnettle8 libnghttp2-14 libonig5 libp11-kit0 libpam-ldapd libpam0g libpcre2-8-0 libpcre3 libpng16-16 libpq5 libpsl5 libreadline8 librtmp1 libsasl2-2 libsodium23 libsqlite3-0 libssh2-1 libssl3 libstdc++6 libsybdb5 libtasn1-6 libtidy5deb1 libtinfo6 libunistring2 libuuid1 libwebp7 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxslt1.1 libzip4 libzstd1 nslcd openssl procps zlib1g # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c mkdir -p /tmp/bitnami/pkg/cache/ # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c mkdir -p /tmp/build-dokuwiki_source # buildkit |
COPY dokuwiki_source /tmp/build-dokuwiki_source/ # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c cd /tmp/build-dokuwiki_source/ ; mkdir -p dokuwiki/files/dokuwiki ; curl -SsLf "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" -O ; tar -zxf "dokuwiki-stable.tgz" -C dokuwiki/files/dokuwiki --strip-components=1 --no-same-owner ; tar -czf "/tmp/bitnami/pkg/cache/dokuwiki-20241217.1.0-linux-amd64-debian-12.tar.gz" dokuwiki ; cd /tmp/ ; rm -rf build-dokuwiki_source # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c cd /tmp/bitnami/pkg/cache/ ; COMPONENTS=( "render-template-1.0.7-8-linux-${OS_ARCH}-debian-12" "php-8.3.14-4-linux-${OS_ARCH}-debian-12" "apache-2.4.62-4-linux-${OS_ARCH}-debian-12" "libphp-8.3.14-0-linux-${OS_ARCH}-debian-12" ) ; for COMPONENT in "${COMPONENTS[@]}"; do if [ ! -f "${COMPONENT}.tar.gz" ]; then curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; fi ; sha256sum -c "${COMPONENT}.tar.gz.sha256" ; tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' ; rm -rf "${COMPONENT}".tar.gz{,.sha256} ; done ; tar -zxf "dokuwiki-20241217.1.0-linux-amd64-debian-12.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c chmod g+rwX /opt/bitnami # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c find / -perm /6000 -type f -exec chmod a-s {} \; || true # buildkit |
COPY rootfs / # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c /opt/bitnami/scripts/apache/postunpack.sh # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c /opt/bitnami/scripts/php/postunpack.sh # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c /opt/bitnami/scripts/apache-modphp/postunpack.sh # buildkit |
RUN |1 TARGETARCH=amd64 /bin/bash -o errexit -o nounset -o pipefail -c /opt/bitnami/scripts/dokuwiki/postunpack.sh # buildkit |
ENV APACHE_HTTPS_PORT_NUMBER= APACHE_HTTP_PORT_NUMBER= APP_VERSION=20241217.1.0 BITNAMI_APP_NAME=dokuwiki PATH=/opt/bitnami/common/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
EXPOSE map[8080/tcp:{} 8443/tcp:{}] |
USER 1001 |
ENTRYPOINT ["/opt/bitnami/scripts/dokuwiki/entrypoint.sh"] |
CMD ["/opt/bitnami/scripts/apache/run.sh"] |
Labels
Key | Value |
---|---|
com.vmware.cp.artifact.flavor | sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83 |
org.opencontainers.image.base.name | docker.io/bitnami/minideb:bookworm |
org.opencontainers.image.created | 2024-12-17T08:30:12Z |
org.opencontainers.image.description | Application packaged by Broadcom, Inc. |
org.opencontainers.image.documentation | https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki/README.md |
org.opencontainers.image.licenses | Apache-2.0 |
org.opencontainers.image.ref.name | 20241217.1.0-debian-12-r14 |
org.opencontainers.image.source | https://github.com/bitnami/containers/tree/main/bitnami/dokuwiki |
org.opencontainers.image.title | dokuwiki |
org.opencontainers.image.vendor | Broadcom, Inc. |
org.opencontainers.image.version | 20241217.1.0 |
Details
2024-12-17 07:32:51 +00:00
Versions (2)
View all
Container
1
OCI / Docker
linux/amd64
Apache-2.0
135 MiB
20241217.1.0-debian-12-r14
2024-12-17
20240206.2.0-debian-12-r12
2024-10-30