Immich tweaks

This commit is contained in:
2025-09-24 20:24:57 -07:00
parent e473791a3e
commit a038cb37b2
3 changed files with 24 additions and 6 deletions
+6 -4
View File
@@ -1,6 +1,6 @@
services:
immich-server:
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
image: ${IMMICH_IMAGE}
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
@@ -17,11 +17,13 @@ services:
- DB_DATABASE_NAME=${IMMICH_DB_DATABASE_NAME:-immich}
healthcheck:
disable: false
ports:
- "8000:2283"
immich-machine-learning:
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
image: ghcr.io/immich-app/immich-machine-learning:release
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
@@ -31,12 +33,12 @@ services:
disable: false
immich-redis:
image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
image: ${REDIS_IMAGE}
healthcheck:
test: redis-cli ping || exit 1
immich-postgres:
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
image: ${POSTGRES_IMAGE}
environment:
POSTGRES_PASSWORD: ${IMMICH_DB_PASSWORD:-postgrespass}
POSTGRES_USER: ${IMMICH_DB_USERNAME:-postgres}