lab

vectorchord (latest)

Published 2025-11-27 10:07:28 +00:00 by myve

Installation

docker pull hub.myvelabs.com/lab/vectorchord:latest
sha256:e575917236c7b4654f1c2cde2407f82c45e890474510bf13a04d61251ed5d07f

About this package

Base images for Immich containers

Image layers

# debian.sh --arch 'amd64' out/ 'bookworm' '@1754870400'
RUN /bin/sh -c set -eux; groupadd -r postgres --gid=999; useradd -r -g postgres --uid=999 --home-dir=/var/lib/postgresql --shell=/bin/bash postgres; install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit
RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends gnupg less ; rm -rf /var/lib/apt/lists/* # buildkit
ENV GOSU_VERSION=1.17
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends ca-certificates wget; rm -rf /var/lib/apt/lists/*; dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; gpgconf --kill all; rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; chmod +x /usr/local/bin/gosu; gosu --version; gosu nobody true # buildkit
RUN /bin/sh -c set -eux; if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; sed -ri '/\/usr\/share\/locale/d' /etc/dpkg/dpkg.cfg.d/docker; ! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; fi; apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen; locale-gen; locale -a | grep 'en_US.utf8' # buildkit
ENV LANG=en_US.utf8
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends libnss-wrapper xz-utils zstd ; rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
RUN /bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; mkdir -p /usr/local/share/keyrings/; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; gpg --batch --export --armor "$key" > /usr/local/share/keyrings/postgres.gpg.asc; gpgconf --kill all; rm -rf "$GNUPGHOME" # buildkit
ENV PG_MAJOR=14
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/14/bin
ENV PG_VERSION=14.19-1.pgdg12+1
RUN /bin/sh -c set -ex; export PYTHONDONTWRITEBYTECODE=1; dpkgArch="$(dpkg --print-architecture)"; aptRepo="[ signed-by=/usr/local/share/keyrings/postgres.gpg.asc ] http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main $PG_MAJOR"; case "$dpkgArch" in amd64 | arm64 | ppc64el) echo "deb $aptRepo" > /etc/apt/sources.list.d/pgdg.list; apt-get update; ;; *) echo "deb-src $aptRepo" > /etc/apt/sources.list.d/pgdg.list; savedAptMark="$(apt-mark showmanual)"; tempDir="$(mktemp -d)"; cd "$tempDir"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev; echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list; _update_repo() { dpkg-scanpackages . > Packages; apt-get -o Acquire::GzipIndexes=false update; }; _update_repo; nproc="$(nproc)"; export DEB_BUILD_OPTIONS="nocheck parallel=$nproc"; apt-get build-dep -y postgresql-common-dev; apt-get source --compile postgresql-common-dev; _update_repo; apt-get build-dep -y "postgresql-$PG_MAJOR=$PG_VERSION"; apt-get source --compile "postgresql-$PG_MAJOR=$PG_VERSION"; apt-mark showmanual | xargs apt-mark auto > /dev/null; apt-mark manual $savedAptMark; ls -lAFh; _update_repo; grep '^Package: ' Packages; cd /; ;; esac; apt-get install -y --no-install-recommends postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y --no-install-recommends "postgresql-$PG_MAJOR=$PG_VERSION" ; rm -rf /var/lib/apt/lists/*; if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove; rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi; find /usr -name '*.pyc' -type f -exec bash -c 'for pyc; do dpkg -S "$pyc" &> /dev/null || rm -vf "$pyc"; done' -- '{}' +; postgres --version # buildkit
RUN /bin/sh -c set -eux; dpkg-divert --add --rename --divert "/usr/share/postgresql/postgresql.conf.sample.dpkg" "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample"; cp -v /usr/share/postgresql/postgresql.conf.sample.dpkg /usr/share/postgresql/postgresql.conf.sample; ln -sv ../postgresql.conf.sample "/usr/share/postgresql/$PG_MAJOR/"; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/share/postgresql/postgresql.conf.sample # buildkit
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
ENV PGDATA=/var/lib/postgresql/data
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
VOLUME [/var/lib/postgresql/data]
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
ENTRYPOINT ["docker-entrypoint.sh"]
STOPSIGNAL SIGINT
EXPOSE map[5432/tcp:{}]
CMD ["postgres"]
ARG PG_MAJOR=14
ADD https://github.com/pgvector/pgvector.git#v0.8.0 /tmp/pgvector # buildkit
RUN |1 PG_MAJOR=14 /bin/sh -c apt-get update && apt-mark hold locales && apt-get install -y --no-install-recommends build-essential postgresql-server-dev-$PG_MAJOR && cd /tmp/pgvector && make clean && make OPTFLAGS="" && make install && mkdir /usr/share/doc/pgvector && cp LICENSE README.md /usr/share/doc/pgvector && rm -r /tmp/pgvector && apt-get remove -y build-essential postgresql-server-dev-$PG_MAJOR && apt-get autoremove -y && apt-mark unhold locales && rm -rf /var/lib/apt/lists/* # buildkit
ARG PG_MAJOR=14
ARG VECTORCHORD_TAG=0.4.3
ARG PGVECTORS_TAG=0.2.0
ARG TARGETARCH=amd64
ENV DB_STORAGE_TYPE=SSD
RUN |4 PG_MAJOR=14 VECTORCHORD_TAG=0.4.3 PGVECTORS_TAG=0.2.0 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y wget && wget -nv -O /tmp/vchord.deb https://github.com/tensorchord/VectorChord/releases/download/$VECTORCHORD_TAG/postgresql-${PG_MAJOR%.*}-vchord_${VECTORCHORD_TAG#"v"}-1_${TARGETARCH}.deb && if [ -n "$PGVECTORS_TAG" ]; then wget -nv -O /tmp/pgvectors.deb https://github.com/tensorchord/pgvecto.rs/releases/download/v$PGVECTORS_TAG/vectors-pg${PG_MAJOR%.*}_${PGVECTORS_TAG#"v"}_${TARGETARCH}$(if [ "$PGVECTORS_TAG" = '0.3.0' ]; then echo "_vectors"; fi).deb; apt-get install -y /tmp/pgvectors.deb; rm -f /tmp/pgvectors.deb; fi && apt-get install -y /tmp/vchord.deb && rm -f /tmp/vchord.deb && apt-get remove -y wget && apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* # buildkit
RUN |4 PG_MAJOR=14 VECTORCHORD_TAG=0.4.3 PGVECTORS_TAG=0.2.0 TARGETARCH=amd64 /bin/sh -c chmod 1777 /etc/postgresql # buildkit
COPY postgresql.hdd.conf postgresql.ssd.conf /var/postgresql-conf-tpl/ # buildkit
COPY immich-docker-entrypoint.sh healthcheck.sh set-env.sh /usr/local/bin/ # buildkit
HEALTHCHECK &{["CMD-SHELL" "/usr/local/bin/healthcheck.sh"] "5m0s" "0s" "5m0s" "5s" '\x00'}
RUN |4 PG_MAJOR=14 VECTORCHORD_TAG=0.4.3 PGVECTORS_TAG=0.2.0 TARGETARCH=amd64 /bin/sh -c if [ -n "$PGVECTORS_TAG" ]; then sed -i "s/vchord.so/vchord.so, vectors.so/" /var/postgresql-conf-tpl/postgresql.*.conf; sed -i "s/, public/, public, vectors/" /var/postgresql-conf-tpl/postgresql.*.conf; fi # buildkit
ENTRYPOINT ["/usr/local/bin/immich-docker-entrypoint.sh"]
CMD ["postgres" "-c" "config_file=/etc/postgresql/postgresql.conf"]

Labels

Key Value
org.opencontainers.image.created 2025-09-16T13:16:49.586Z
org.opencontainers.image.description Base images for Immich containers
org.opencontainers.image.licenses AGPL-3.0
org.opencontainers.image.revision eb86bcfafcead95d28f3d9414738d1076d04136b
org.opencontainers.image.source https://github.com/immich-app/base-images
org.opencontainers.image.title base-images
org.opencontainers.image.url https://github.com/immich-app/base-images
org.opencontainers.image.version 14-vectorchord0.4.3-pgvector0.8.0-pgvectors0.2.0
Details
Container
2025-11-27 10:07:28 +00:00
0
OCI / Docker
linux/amd64
AGPL-3.0
195 MiB
Versions (1) View all
latest 2025-11-27