diff --git a/bitnami/supabase-postgres/15/debian-11/Dockerfile b/bitnami/supabase-postgres/15/debian-11/Dockerfile index 9f5939ae371c..ef3a33d734cc 100644 --- a/bitnami/supabase-postgres/15/debian-11/Dockerfile +++ b/bitnami/supabase-postgres/15/debian-11/Dockerfile @@ -9,10 +9,10 @@ ARG WITH_ALL_LOCALES="no" LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2024-01-12T12:45:54Z" \ + org.opencontainers.image.created="2024-01-20T07:36:58Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="15.1.1-debian-11-r2" \ + org.opencontainers.image.ref.name="15.1.1-debian-11-r3" \ org.opencontainers.image.title="supabase-postgres" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="15.1.1" @@ -28,7 +28,7 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"] RUN install_packages ca-certificates curl libbrotli1 libbsd0 libbz2-1.0 libcom-err2 libcrypt1 libcurl4 libedit2 libevent-2.1-7 libffi7 libgcc-s1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed6 libicu67 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblz4-1 liblzma5 libmd0 libmecab2 libmsgpackc2 libncurses6 libnettle8 libnghttp2-14 libnorm1 libp11-kit0 libpcre3 libpgm-5.3-0 libpsl5 libreadline8 librtmp1 libsasl2-2 libsodium23 libsqlite3-0 libssh2-1 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 libzmq5 libzstd1 locales procps zlib1g RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \ COMPONENTS=( \ - "java-17.0.9-11-6-linux-${OS_ARCH}-debian-11" \ + "java-17.0.10-13-0-linux-${OS_ARCH}-debian-11" \ "supabase-postgres-15.1.1-2-linux-${OS_ARCH}-debian-11" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ @@ -44,6 +44,7 @@ RUN apt-get update && apt-get upgrade -y && \ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8 +RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true RUN update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \ DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales RUN echo 'en_GB.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen diff --git a/bitnami/supabase-postgres/15/debian-11/docker-compose.yml b/bitnami/supabase-postgres/15/debian-11/docker-compose.yml deleted file mode 100644 index 41ba792f906f..000000000000 --- a/bitnami/supabase-postgres/15/debian-11/docker-compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright VMware, Inc. -# SPDX-License-Identifier: APACHE-2.0 - -version: '2' - -services: - supabase-postgres: - image: docker.io/bitnami/supabase-postgres:15 - ports: - - '5432:5432' - volumes: - - 'postgresql_data:/bitnami/postgresql' - environment: - - 'ALLOW_EMPTY_PASSWORD=yes' - -volumes: - postgresql_data: - driver: local diff --git a/bitnami/supabase-postgres/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/supabase-postgres/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index c53b166a1606..d41767ed78e7 100644 --- a/bitnami/supabase-postgres/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/supabase-postgres/15/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -3,7 +3,7 @@ "arch": "amd64", "distro": "debian-11", "type": "NAMI", - "version": "17.0.9-11-6" + "version": "17.0.10-13-0" }, "supabase-postgres": { "arch": "amd64", diff --git a/bitnami/supabase-postgres/README.md b/bitnami/supabase-postgres/README.md index 07eafea0ad34..e00a1e766bff 100644 --- a/bitnami/supabase-postgres/README.md +++ b/bitnami/supabase-postgres/README.md @@ -13,13 +13,6 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema docker run -it --name supabase-postgres bitnami/supabase-postgres ``` -### Docker Compose - -```console -curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/supabase-postgres/docker-compose.yml > docker-compose.yml -docker-compose up -d -``` - ## Why use Bitnami Images? * Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems. @@ -73,20 +66,12 @@ Bitnami provides up-to-date versions of Supabase Postgres, including security pa docker pull bitnami/supabase-postgres:latest ``` -or if you're using Docker Compose, update the value of the image property to `bitnami/supabase-postgres:latest`. - #### Step 2: Remove the currently running container ```console docker rm -v supabase-postgres ``` -or using Docker Compose: - -```console -docker-compose rm -v supabase-postgres -``` - #### Step 3: Run the new image Re-create your container from the new image. @@ -95,16 +80,16 @@ Re-create your container from the new image. docker run --name supabase-postgres bitnami/supabase-postgres:latest ``` -or using Docker Compose: - -```console -docker-compose up supabase-postgres -``` - ## Configuration This container is fully compatible with the [bitnami/postgresql](https://github.com/bitnami/containers/tree/main/bitnami/postgresql) container. Read the [bitnami/postgresql documentation](https://github.com/bitnami/containers/tree/main/bitnami/postgresql#configuration) for instructions on how to configure the container. +## Notable Changes + +### Starting January 16, 2024 + +* The `docker-compose.yaml` file has been removed, as it was solely intended for internal testing purposes. + ## Contributing We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.