MattFaz
MattFaz
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
I’ll rebuild it with the latest files 🙂
10 replies
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
I created the containers a long time ago and since then have just done updates. So docker-compose file hasn't changed in ages
10 replies
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
No description
10 replies
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
No description
10 replies
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
.env File:
DB_HOSTNAME=192.168.0.25
DB_USERNAME=xxxx
DB_PASSWORD=xxxx
DB_DATABASE_NAME=immich

DB_PORT=5432

REDIS_HOSTNAME=immich_redis

# REDIS_PORT=6379
# REDIS_DBINDEX=0
# REDIS_PASSWORD=
# REDIS_SOCKET=

UPLOAD_LOCATION=/mnt/user/images/immich

TYPESENSE_API_KEY=xxxx

# TYPESENSE_ENABLED=false
# DISABLE_REVERSE_GEOCODING=false
# REVERSE_GEOCODING_PRECISION=3

PUBLIC_LOGIN_PAGE_MESSAGE=

IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003

#IMMICH_API_URL_EXTERNAL=http://localhost:3001
DB_HOSTNAME=192.168.0.25
DB_USERNAME=xxxx
DB_PASSWORD=xxxx
DB_DATABASE_NAME=immich

DB_PORT=5432

REDIS_HOSTNAME=immich_redis

# REDIS_PORT=6379
# REDIS_DBINDEX=0
# REDIS_PASSWORD=
# REDIS_SOCKET=

UPLOAD_LOCATION=/mnt/user/images/immich

TYPESENSE_API_KEY=xxxx

# TYPESENSE_ENABLED=false
# DISABLE_REVERSE_GEOCODING=false
# REVERSE_GEOCODING_PRECISION=3

PUBLIC_LOGIN_PAGE_MESSAGE=

IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003

#IMMICH_API_URL_EXTERNAL=http://localhost:3001
10 replies
IImmich
Created by MattFaz on 6/13/2023 in #help-desk-support
Errors when deleting Photos / Videos
Docker Compose file:
version: "3.8"

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:release
entrypoint: ["/bin/sh", "./start-server.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- typesense
restart: always

immich-microservices:
container_name: immich_microservices
image: ghcr.io/immich-app/immich-server:release
entrypoint: ["/bin/sh", "./start-microservices.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- typesense
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
env_file:
- .env
environment:
- NODE_ENV=production
restart: always

immich-web:
container_name: immich_web
image: ghcr.io/immich-app/immich-web:release
entrypoint: ["/bin/sh", "./entrypoint.sh"]
env_file:
- .env
restart: always

typesense:
container_name: immich_typesense
image: typesense/typesense:0.24.0
environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data
logging:
driver: none
volumes:
- tsdata:/data
restart: always

redis:
container_name: immich_redis
image: redis:6.2
restart: always

immich-proxy:
container_name: immich_proxy
image: ghcr.io/immich-app/immich-proxy:release
environment:
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
ports:
- 2283:8080
logging:
driver: none
depends_on:
- immich-server
restart: always

volumes:
pgdata:
model-cache:
tsdata:
version: "3.8"

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:release
entrypoint: ["/bin/sh", "./start-server.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- typesense
restart: always

immich-microservices:
container_name: immich_microservices
image: ghcr.io/immich-app/immich-server:release
entrypoint: ["/bin/sh", "./start-microservices.sh"]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- typesense
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
env_file:
- .env
environment:
- NODE_ENV=production
restart: always

immich-web:
container_name: immich_web
image: ghcr.io/immich-app/immich-web:release
entrypoint: ["/bin/sh", "./entrypoint.sh"]
env_file:
- .env
restart: always

typesense:
container_name: immich_typesense
image: typesense/typesense:0.24.0
environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data
logging:
driver: none
volumes:
- tsdata:/data
restart: always

redis:
container_name: immich_redis
image: redis:6.2
restart: always

immich-proxy:
container_name: immich_proxy
image: ghcr.io/immich-app/immich-proxy:release
environment:
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
ports:
- 2283:8080
logging:
driver: none
depends_on:
- immich-server
restart: always

volumes:
pgdata:
model-cache:
tsdata:
10 replies
IImmich
Created by tranCe-addiCted on 12/19/2022 in #help-desk-support
immich-immich-microservices-1 stopped and won't start
86 replies
IImmich
Created by tranCe-addiCted on 12/19/2022 in #help-desk-support
immich-immich-microservices-1 stopped and won't start
FYI @Alex Tran - I'll update the doco with this info
86 replies
IImmich
Created by tranCe-addiCted on 12/19/2022 in #help-desk-support
immich-immich-microservices-1 stopped and won't start
@tranCe-addiCted Unraid will always show update ready for Immich because it was made via docker compose rather than using the Unraid community apps. Just ignore it and when you get the notification (or just whenever you feel like it) update the stack using the "Update Stack" button
86 replies