@@ -38,7 +38,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu
3838 - POSTGRES_PASSWORD=postgres
3939 - POSTGRES_DB=immich
4040 volumes:
41- - @CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_VAR_LIB_POSTGRESQL_DATA_PATH @:/var/lib/postgresql/data
41+ - @CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_PATH @:/var/lib/postgresql/data
4242 ports:
4343 - @IMMICH_POSTGRES_PORT@:5432
4444 restart: unless-stopped
@@ -52,7 +52,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu
5252 -e POSTGRES_USER=postgres \
5353 -e POSTGRES_PASSWORD=postgres \
5454 -e POSTGRES_DB=immich \
55- -v @CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_VAR_LIB_POSTGRESQL_DATA_PATH @:/var/lib/postgresql/data \
55+ -v @CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_PATH @:/var/lib/postgresql/data \
5656 ghcr.io/daemonless/immich-postgres:latest
5757 ```
5858
@@ -72,7 +72,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu
7272 ports:
7373 - "@IMMICH_POSTGRES_PORT@:5432"
7474 volumes:
75- - "@CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_VAR_LIB_POSTGRESQL_DATA_PATH @:/var/lib/postgresql/data"
75+ - "@CONTAINER_CONFIG_ROOT@/@IMMICH_POSTGRES_PATH @:/var/lib/postgresql/data"
7676 ```
7777
7878Access the Web UI at: ` http://localhost:@IMMICH_POSTGRES_PORT@ `
@@ -82,27 +82,26 @@ Access the Web UI at: `http://localhost:@IMMICH_POSTGRES_PORT@`
8282<div class =" placeholder-settings-panel " ></div >
8383
8484## Parameters
85-
8685### Environment Variables
8786
8887| Variable | Default | Description |
8988| ----------| ---------| -------------|
9089| ` POSTGRES_USER ` | ` postgres ` | Database superuser (default: postgres) |
9190| ` POSTGRES_PASSWORD ` | ` postgres ` | Database password (default: postgres) |
9291| ` POSTGRES_DB ` | ` immich ` | Database name (default: immich) |
93-
9492### Volumes
9593
9694| Path | Description |
9795| ------| -------------|
9896| ` /var/lib/postgresql/data ` | Database data directory |
99-
10097### Ports
10198
10299| Port | Protocol | Description |
103100| ------| ----------| -------------|
104101| ` 5432 ` | TCP | PostgreSQL Port |
105102
103+ This image is part of the [ Immich Stack] ( https://daemonless.io/images/immich ) .
104+
106105!!! info "Implementation Details"
107106
108107 - **User:** `postgres` (UID/GID set via [PUID/PGID](../guides/permissions.md)). Defaults to `1000:1000`.
0 commit comments