Cheezelz
Cheezelz
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
Thanks so much, the restore worked perfectly!
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
Would you recommend replacing my current compose file with the most recent example one?
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
I'll have a look
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
ahh that makes sense
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
yeah I gathered this would be the case, what changes to the compose file need to be made to have it a bind mount instead?
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
I've looked at this but I don't quite even understand the first command in the restore. The output from it in the unraid window is: no configuration file provided: not found
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
I
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
yes I do
21 replies
IImmich
Created by Cheezelz on 12/28/2024 in #help-desk-support
Unraid Immich Instance Gone
name: immich

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
extends:
file: hwaccel.yml
service: hwaccel
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
cpus: 1
volumes:
- model-cache:/cache
env_file:
- .env
restart: always

redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:3995fe6ea6a619313e31046bd3c8643f9e70f8f2b294ff82659d409b47d06abb
restart: always

database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
volumes:
- pgdata:/var/lib/postgresql/data
restart: always

volumes:
pgdata:
model-cache:
name: immich

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
extends:
file: hwaccel.yml
service: hwaccel
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
cpus: 1
volumes:
- model-cache:/cache
env_file:
- .env
restart: always

redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:3995fe6ea6a619313e31046bd3c8643f9e70f8f2b294ff82659d409b47d06abb
restart: always

database:
container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file:
- .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
volumes:
- pgdata:/var/lib/postgresql/data
restart: always

volumes:
pgdata:
model-cache:
21 replies