RedGamer
RedGamer
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
:peepoAwesome:
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
tks for the support
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
ok all good
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
are u here?
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
Ok, let me see if I got this right: This backup is useful in case I ever need to reinstall Immich from scratch, and it helps the system know where to find all the files and how they’re organized (more or less), right?
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
it generate only a 50mb file, it ok?
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
ur right
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
It say this
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
root@nascasa:~/immich-app# docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres | gzip > /mnt/nascasa/backupdiprova -bash: /mnt/nascasa/backupdiprova: Is a directory root@nascasa:~/immich-app#
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
ok now I'll try and see if everything goes well
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
yes yes
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
and that's it?
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
Quindi... giusto per essere sicuro... ora devo fare: docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres | gzip > "/path/to/backup/dump.sql.gz" docker compose down Make the change in the .yml like the first thing that i wrote docker compose pull && docker compose up -d
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
the backup is recommended for pictures or database? i use the link in the changelog which brought me to the page where these instructions are
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
tks
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
yes ahaha
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
ah okok, like this: docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres | gzip > "/path/to/backup/dump.sql.gz"
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
Maybe they're not so bad after all ahaha
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
I read that it would be better to do a backup first, but do you mean a backup of all data (photos and videos)? If so, the correct procedure is this: docker exec -t immich_postgres pg_dumpall --clean --if-exists --username=postgres | gzip > "/path/to/backup/dump.sql.gz" ?
32 replies
IImmich
Created by RedGamer on 5/22/2025 in #help-desk-support
1.133.0 update help
if I understood correctly I should first turn off docker by doing: docker compose down, then make these changes and do docker compose pull && docker compose up -d? Correct me if I'm wrong
- .env ports: - '2283:2283' depends_on: - redis - database restart: always healthcheck: disable: false 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 healthcheck: disable: false redis: container_name: immich_redis image: docker.io/redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs DB_STORAGE_TYPE: 'HDD' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data restart: always volumes: model-cache:
32 replies