From 393458871d98a51d4b2a15a0765872f47a78a855 Mon Sep 17 00:00:00 2001 From: darkskygit Date: Thu, 15 May 2025 06:56:35 +0000 Subject: [PATCH] fix(server): self hosted config (#12253) ## Summary by CodeRabbit - **Chores** - Updated the Docker Compose configuration to use a different image for the Postgres service. --- .docker/selfhost/compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/selfhost/compose.yml b/.docker/selfhost/compose.yml index cdb3dd758..e473b194f 100644 --- a/.docker/selfhost/compose.yml +++ b/.docker/selfhost/compose.yml @@ -57,7 +57,7 @@ services: restart: unless-stopped postgres: - image: postgres:16 + image: pgvector/pgvector:pg16 container_name: affine_postgres volumes: - ${DB_DATA_LOCATION}:/var/lib/postgresql/data