1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

mount postgres folder to local directory by default (#8443)

This commit is contained in:
Daniel Dietzler
2024-04-08 22:11:25 +02:00
committed by GitHub
parent 7b1562c050
commit b6cdffa509
2 changed files with 2 additions and 2 deletions

View File

@ -69,9 +69,8 @@ services:
POSTGRES_USER: ${DB_USERNAME} POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_DB: ${DB_DATABASE_NAME}
volumes: volumes:
- pgdata:/var/lib/postgresql/data - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
restart: always restart: always
volumes: volumes:
pgdata:
model-cache: model-cache:

View File

@ -14,5 +14,6 @@ DB_PASSWORD=postgres
DB_HOSTNAME=immich_postgres DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres DB_USERNAME=postgres
DB_DATABASE_NAME=immich DB_DATABASE_NAME=immich
DB_DATA_LOCATION=./postgres
REDIS_HOSTNAME=immich_redis REDIS_HOSTNAME=immich_redis