update pgvecto.rs

This commit is contained in:
mertalev 2023-11-28 20:30:06 -05:00
parent c18affaad1
commit 6d7e6a73c7
No known key found for this signature in database
GPG key ID: 9181CD92C0A1C5E3
5 changed files with 5 additions and 6 deletions

View file

@ -99,7 +99,7 @@ services:
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.1.10
image: tensorchord/pgvecto-rs:pg14-v0.1.11
env_file:
- .env
environment:

View file

@ -56,7 +56,7 @@ services:
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.1.10
image: tensorchord/pgvecto-rs:pg14-v0.1.11
env_file:
- .env
environment:

View file

@ -23,7 +23,7 @@ services:
- database
database:
image: tensorchord/pgvecto-rs:pg14-v0.1.10
image: tensorchord/pgvecto-rs:pg14-v0.1.11
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres

View file

@ -60,7 +60,7 @@ services:
database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.1.10
image: tensorchord/pgvecto-rs:pg14-v0.1.11
env_file:
- .env
environment:
@ -74,4 +74,3 @@ services:
volumes:
pgdata:
model-cache:
tsdata:

View file

@ -35,7 +35,7 @@ export default async () => {
if (process.env.DB_HOSTNAME === undefined) {
// DB hostname not set which likely means we're not running e2e through docker compose. Start a local postgres container.
const pg = await new PostgreSqlContainer('tensorchord/pgvecto-rs:pg14-v0.1.10')
const pg = await new PostgreSqlContainer('tensorchord/pgvecto-rs:pg14-v0.1.11')
.withExposedPorts(5432)
.withDatabase('immich')
.withUsername('postgres')