Adding immich database changes

This commit is contained in:
Bradley Bickford 2024-12-20 20:42:43 -05:00
parent a1dbf69836
commit 0d439eb892

View File

@ -18,3 +18,29 @@ services:
- "5432:5432"
volumes:
- "/postgres:/var/lib/postgresql/data"
postgres_immich:
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file: .postgres_immich.env
ports:
- "5433:5432"
volumes:
- "/postgres_immich:/var/lib/postgresql/data"
healthcheck:
test: >-
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
--command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
echo "checksum failure count is $$Chksum";
[ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
command: >-
postgres
-c shared_preload_libraries=vectors.so
-c 'search_path="$$user", public, vectors'
-c logging_collector=on
-c max_wal_size=2GB
-c shared_buffers=512MB
-c wal_compression=on
restart: always