pgbuddy (sha256:99629b5244ad9e8d8b2d247078fdcb9c71256339005dd0719ced6d90469d8699)
Installation
docker pull forgejo.hostlab.tech/suitdeer/pgbuddy@sha256:99629b5244ad9e8d8b2d247078fdcb9c71256339005dd0719ced6d90469d8699sha256:99629b5244ad9e8d8b2d247078fdcb9c71256339005dd0719ced6d90469d8699About this package
A tiny web UI to back up and restore multiple PostgreSQL databases from a
Image layers
| ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| RUN /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz # buildkit |
| RUN /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data # 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 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=1198C0117593497A5EC5C199286AF1F9897469DC 49D9AF6BC72A80D6691719C8AA23F5BE9C7097D4 D95C03BC702BE9515344AE3374E44BC9067701A5 |
| ENV PHP_VERSION=8.5.9 |
| ENV PHP_URL=https://www.php.net/distributions/php-8.5.9.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.5.9.tar.xz.asc |
| ENV PHP_SHA256=0db7855f25bcd0ab1d592cdb35e284d6f6a5d2ae0f6f621122e364cc39b708f4 |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; 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"; apk del --no-network .fetch-deps # buildkit |
| COPY docker-php-source /usr/local/bin/ # buildkit |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; 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)"; 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=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear ; 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; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; 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 sodium # buildkit |
| ENTRYPOINT ["docker-php-entrypoint"] |
| CMD ["php" "-a"] |
| LABEL org.opencontainers.image.source=https://forgejo.hostlab.tech/suitdeer/pgbuddy |
| RUN /bin/sh -c apk add --no-cache postgresql-client msmtp ca-certificates jq tzdata bash openssh-client sshpass # buildkit |
| COPY src/ /var/www/html/ # buildkit |
| RUN /bin/sh -c echo 'upload_max_filesize = 10G' > $PHP_INI_DIR/conf.d/pgbuddy.ini && echo 'post_max_size = 10G' >> $PHP_INI_DIR/conf.d/pgbuddy.ini # buildkit |
| COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit |
| COPY docker/crontab /etc/crontabs/root # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/entrypoint.sh && chmod 0644 /etc/crontabs/root # buildkit |
| VOLUME [/config /backups] |
| ENV BACKUP_TIMEZONE=UTC |
| EXPOSE [80/tcp] |
| ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |
| CMD ["php" "-S" "0.0.0.0:80" "-t" "/var/www/html"] |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.created | 2026-08-16T19:52:57.556Z |
| org.opencontainers.image.description | A tiny web UI to back up and restore multiple PostgreSQL databases from a |
| org.opencontainers.image.licenses | |
| org.opencontainers.image.revision | a1b0b8a60a1efc76d216d945673c99ed04ff6957 |
| org.opencontainers.image.source | https://forgejo.hostlab.tech/suitdeer/pgbuddy |
| org.opencontainers.image.title | pgbuddy |
| org.opencontainers.image.url | https://forgejo.hostlab.tech/suitdeer/pgbuddy |
| org.opencontainers.image.version | 1.1.11 |
| single Docker container |
Details
2026-08-16 21:53:24 +02:00
Versions (36)
View all
Container
2
OCI / Docker
linux/amd64
51 MiB