keo

borgbackupserver (v2.64.2-authelia-oidc-787b5a5c63e4)

Published 2026-07-25 03:17:03 -04:00 by keo

Installation

docker pull git.keo.sh/keo/borgbackupserver:v2.64.2-authelia-oidc-787b5a5c63e4
sha256:e1cf9cd825c5ac11d0c20e3d378bbccf456969c3e893ee275f757d8837739c24

About this package

Borg Backup Server 2.64.2 with S256 PKCE and configurable OIDC logout

Image layers

# debian.sh --arch 'amd64' out/ 'trixie' '@1783900800'
RUN /bin/sh -c set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php # buildkit
ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; apt-get dist-clean # buildkit
ENV PHP_INI_DIR=/usr/local/etc/php
RUN /bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html # buildkit
ENV APACHE_CONFDIR=/etc/apache2
ENV APACHE_ENVVARS=/etc/apache2/envvars
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends apache2; apt-get dist-clean; sed -ri 's/^export ([^=]+)=(.*)$/: ${\1:=\2}\nexport \1/' "$APACHE_ENVVARS"; . "$APACHE_ENVVARS"; for dir in "$APACHE_LOCK_DIR" "$APACHE_RUN_DIR" "$APACHE_LOG_DIR" "$APACHE_RUN_DIR/socks" ; do rm -rvf "$dir"; mkdir -p "$dir"; chown "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$dir"; chmod 1777 "$dir"; done; rm -rvf /var/www/html/*; ln -sfT /dev/stderr "$APACHE_LOG_DIR/error.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/access.log"; ln -sfT /dev/stdout "$APACHE_LOG_DIR/other_vhosts_access.log"; chown -R --no-dereference "$APACHE_RUN_USER:$APACHE_RUN_GROUP" "$APACHE_LOG_DIR" # buildkit
RUN /bin/sh -c a2dismod mpm_event && a2enmod mpm_prefork # buildkit
RUN /bin/sh -c { echo '<FilesMatch \.php$>'; echo '\tSetHandler application/x-httpd-php'; echo '</FilesMatch>'; echo; echo 'DirectoryIndex disabled'; echo 'DirectoryIndex index.php index.html'; echo; echo '<Directory /var/www/>'; echo '\tOptions -Indexes'; echo '\tAllowOverride All'; echo '</Directory>'; } | tee "$APACHE_CONFDIR/conf-available/docker-php.conf" && a2enconf docker-php # buildkit
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_LDFLAGS=-Wl,-O1 -pie
ENV GPG_KEYS=AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD
ENV PHP_VERSION=8.4.23
ENV PHP_URL=https://www.php.net/distributions/php-8.4.23.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.4.23.tar.xz.asc
ENV PHP_SHA256=1ab9f52008414e43bb2427ffa288eff2a4de39e1a830f957e800ba368d887a72
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; apt-get dist-clean; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false # buildkit
COPY docker-php-source /usr/local/bin/ # buildkit
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends apache2-dev libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; test "$PHP_INI_DIR" != "${PHP_INI_DIR%/php}"; ./configure --build="$gnuArch" --sysconfdir="${PHP_INI_DIR%/php}" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear --with-libdir="lib/$debMultiarch" --disable-cgi --with-apxs2 ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version # buildkit
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit
RUN /bin/sh -c docker-php-ext-enable opcache # buildkit
RUN /bin/sh -c docker-php-ext-enable sodium # buildkit
ENTRYPOINT ["docker-php-entrypoint"]
STOPSIGNAL SIGWINCH
COPY apache2-foreground /usr/local/bin/ # buildkit
WORKDIR /var/www/html
EXPOSE map[80/tcp:{}]
CMD ["apache2-foreground"]
RUN /bin/sh -c apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y && apt-get install -y --no-install-recommends git curl ca-certificates libpng-dev libonig-dev libxml2-dev libfuse-dev fuse zip unzip cron sudo mariadb-server mariadb-client borgbackup openssh-client openssh-server python3-pip gnupg && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # buildkit
RUN /bin/sh -c ARCH=$(dpkg --print-architecture) && curl -fsSL "https://downloads.rclone.org/rclone-current-linux-${ARCH}.zip" -o /tmp/rclone.zip && unzip -q /tmp/rclone.zip -d /tmp && cp /tmp/rclone-*/rclone /usr/bin/rclone && chmod 755 /usr/bin/rclone && rm -rf /tmp/* # buildkit
ARG CLICKHOUSE_VERSION=26.5.2.39
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c ARCH=$(dpkg --print-architecture) && curl -fsSL -A 'Mozilla/5.0' 'https://packages.clickhouse.com/rpm/lts/repodata/repomd.xml.key' | gpg --dearmor -o /usr/share/keyrings/clickhouse-keyring.gpg && echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg arch=${ARCH}] https://packages.clickhouse.com/deb stable main" > /etc/apt/sources.list.d/clickhouse.list && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends clickhouse-common-static=${CLICKHOUSE_VERSION} clickhouse-server=${CLICKHOUSE_VERSION} clickhouse-client=${CLICKHOUSE_VERSION} && apt-mark hold clickhouse-common-static clickhouse-server clickhouse-client && apt-get upgrade -y && apt-get dist-upgrade -y && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # buildkit
COPY config/clickhouse-server-override.xml /etc/clickhouse-server/config.d/bbs-override.xml # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c pip3 install --break-system-packages --no-cache-dir apprise wheel>=0.46.2 && rm -rf /root/.cache /usr/lib/python3/dist-packages/wheel* # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c docker-php-ext-install pdo pdo_mysql mbstring # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c { echo "max_execution_time = 300"; echo "display_errors = Off"; echo "display_startup_errors = Off"; echo "log_errors = On"; } > /usr/local/etc/php/conf.d/bbs.ini # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c a2enmod rewrite && echo "ServerName localhost" >> /etc/apache2/apache2.conf && echo '<VirtualHost *:80>\n DocumentRoot /var/www/bbs/public\n <Directory /var/www/bbs/public>\n AllowOverride All\n Require all granted\n </Directory>\n ErrorLog ${APACHE_LOG_DIR}/error.log\n CustomLog ${APACHE_LOG_DIR}/access.log combined\n</VirtualHost>' > /etc/apache2/sites-available/000-default.conf # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config && sed -i 's/#PubkeyAuthentication yes/PubkeyAuthentication yes/' /etc/ssh/sshd_config && echo "PermitRootLogin no" >> /etc/ssh/sshd_config # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c mkdir -p /var/www/bbs /var/bbs/home /var/bbs/backups /var/bbs/cache /run/mysqld /run/sshd && chown -R www-data:www-data /var/www/bbs /var/bbs && chown mysql:mysql /run/mysqld # buildkit
COPY . /var/www/bbs/ # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c cd /var/www/bbs && composer install --no-dev --optimize-autoloader --no-interaction --quiet && rm -rf /root/.composer/cache && chown -R www-data:www-data /var/www/bbs # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c cp /var/www/bbs/bin/bbs-ssh-helper /usr/local/bin/bbs-ssh-helper && cp /var/www/bbs/bin/bbs-ssh-gate /usr/local/bin/bbs-ssh-gate && chmod 755 /usr/local/bin/bbs-ssh-helper /usr/local/bin/bbs-ssh-gate # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c echo "www-data ALL=(root) NOPASSWD: /usr/local/bin/bbs-ssh-helper, /var/www/bbs/bin/bbs-update" > /etc/sudoers.d/bbs-ssh-helper && echo "www-data ALL=(bbs-*) NOPASSWD: /usr/bin/borg, /usr/local/bin/borg, /usr/bin/rclone, /usr/bin/env" > /etc/sudoers.d/bbs-borg && chmod 440 /etc/sudoers.d/bbs-ssh-helper /etc/sudoers.d/bbs-borg # buildkit
COPY entrypoint.sh /entrypoint.sh # buildkit
RUN |1 CLICKHOUSE_VERSION=26.5.2.39 /bin/sh -c chmod +x /entrypoint.sh # buildkit
ENV PUID=33
ENV PGID=33
EXPOSE [22/tcp 80/tcp]
ENTRYPOINT ["/entrypoint.sh"]
ARG SOURCE_REVISION
LABEL org.opencontainers.image.source=https://git.keo.sh/keo/docker-borgbackupserver org.opencontainers.image.revision=787b5a5c63e405e3465646d9bdf29c6d4d26f289 org.opencontainers.image.version=2.64.2-authelia-oidc org.opencontainers.image.description=Borg Backup Server 2.64.2 with S256 PKCE and configurable OIDC logout org.opencontainers.image.base.name=docker.io/marcpope/borgbackupserver:v2.64.2 org.opencontainers.image.base.digest=sha256:08b3a748ec9b8e3e94eff226800012037977f187cc8f9fb9f1b902ffe5756bd8
RUN |1 SOURCE_REVISION=787b5a5c63e405e3465646d9bdf29c6d4d26f289 /bin/sh -c set -eu; printf '%s %s\n' 'c95685f1bbef505ae575294704df82bbf4aab34dca84cae438e32aded5326276' '/var/www/bbs/src/Services/OidcService.php' | sha256sum -c -; cd /; git apply --check /build/OidcService.php.patch; git apply /build/OidcService.php.patch; php -l /var/www/bbs/src/Services/OidcService.php # buildkit
RUN /bin/sh -c php /build/test-oidc-patch.php # buildkit

Labels

Key Value
org.opencontainers.image.base.digest sha256:08b3a748ec9b8e3e94eff226800012037977f187cc8f9fb9f1b902ffe5756bd8
org.opencontainers.image.base.name docker.io/marcpope/borgbackupserver:v2.64.2
org.opencontainers.image.description Borg Backup Server 2.64.2 with S256 PKCE and configurable OIDC logout
org.opencontainers.image.revision 787b5a5c63e405e3465646d9bdf29c6d4d26f289
org.opencontainers.image.source https://git.keo.sh/keo/docker-borgbackupserver
org.opencontainers.image.version 2.64.2-authelia-oidc
Details
Container
2026-07-25 03:17:03 -04:00
3
OCI / Docker
linux/amd64
627 MiB
Versions (1) View all