Error with incorrect env names in immich

This commit is contained in:
Max Buz
2023-09-22 15:21:34 +02:00
committed by GitHub
parent 9eba147fef
commit 328afe3b80

View File

@@ -8,7 +8,7 @@ services:
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
- stackstack.env
depends_on:
- redis
- database
@@ -25,7 +25,7 @@ services:
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
- stack.env
depends_on:
- redis
- database
@@ -38,14 +38,14 @@ services:
volumes:
- model-cache:/cache
env_file:
- .env
- stack.env
restart: unless-stopped
immich-web:
container_name: immich_web
image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release}
env_file:
- .env
- stack.env
restart: unless-stopped
typesense:
@@ -69,7 +69,7 @@ services:
container_name: immich_postgres
image: postgres:14-alpine@sha256:28407a9961e76f2d285dc6991e8e48893503cc3836a4755bbc2d40bcc272a441
env_file:
- .env
- stack.env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}