autonomous5096
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
Here is the output with the full command I ran, it is my full output excluding a section I shortened that I assume is GPS co-ordinates for readability. Thanks for your time.
18 replies
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
But my compose used to point towards ${DB_DATA_LOCATION}:/var/lib/postgresql/data before I changed it in the compose after my first attempt at restoring failed and I could not find the expected data in var/lib.
18 replies
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
Yes with the command rm -rf /srv/dev-disk-by-uuid-a914a7e5-3822-4cdb-a5e8-e8c7e3d13883/Immich-docker/pgdata/
18 replies
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
Sure, here is my compose file:
version: "3.8"
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
- /srv/dev-disk-by-uuid-a914a7e5-3822-4cdb-a5e8-e8c7e3d13883/Immich-docker/upload:/usr/src/app/external
env_file:
- .env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always
immich-machine-learning:
container_name: 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}
# 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
volumes:
- model-cache:/cache
env_file:
- .env
restart: always
redis:
container_name: immich_redis
image: redis:6.2-alpine@sha256:afb290a0a0d0b2bd7537b62ebff1eb84d045c757c1c31ca2ca48c79536c0de82
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:
- /srv/dev-disk-by-uuid-a914a7e5-3822-4cdb-a5e8-e8c7e3d13883/Immich-docker/pgdata:/var/lib/postgresql/data
restart: always
volumes:
pgdata:
model-cache:18 replies
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
Apologies, I mean DB_DATA_LOCATION rather than UPLOAD_Location.
18 replies
IImmich
•Created by autonomous5096 on 3/31/2025 in #help-desk-support
Unable to restore server
Yes the file should be correct as it is dated a week before I attempted to transfer to my new server from a known working setup. My database was however originally set to the default provided by the Immich Docker Compose file prior to me changing to a mapped volume. I wonder if residual data is causing an issue here, but I cannot seem to find the expected data at the default UPLOAD_LOCATION (var/lib/docker or var/lib/postgres). I have run docker image prune to remove any leftover files.
The logs for my postgres container look okay.
18 replies