Shaquille_Oatmeal
Shaquille_Oatmeal
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Thanks!
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
So after the postgress line change as suggested by @Alex for the DB container and recreating the ML, Redis and Server container via portainer, upgrade succesfull
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Not to be done for the DB!!!
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
No description
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Found a way in portainer to recreate the server, ml and redis like this:
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
No worried
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
How to do this for portainer? The containers show up in docker but I have no active projects in docker
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
When I click these contsiners "no such container exists" message from docker
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
No description
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
DB is up now, only issue remains the renamed ML, Redis and Server
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Will check now
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Went from the latest version to 1.133
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
No description
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
No description
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Previous stack compose: services: immich-redis: image: redis container_name: Immich-REDIS hostname: immich-redis security_opt: - no-new-privileges:true healthcheck: test: ["CMD-SHELL", "redis-cli ping || exit 1"] user: 1026:100 environment: - TZ=Europe/Amsterdam volumes: - /volume1/docker/immich/redis:/data:rw restart: on-failure:5 immich-db: image: tensorchord/pgvecto-rs:pg16-v0.2.0 container_name: Immich-DB hostname: immich-db security_opt: - no-new-privileges:true healthcheck: test: ["CMD", "pg_isready", "-q", "-d", "immich", "-U", "immichuser"] interval: 10s timeout: 5s retries: 5 volumes: - /volume1/docker/immich/db:/var/lib/postgresql/data:rw environment: - TZ=Europe/Amsterdam - POSTGRES_DB=immich - POSTGRES_USER=immichuser - POSTGRES_PASSWORD=immichpw restart: on-failure:5 immich-server: image: ghcr.io/immich-app/immich-server:release container_name: Immich-SERVER hostname: immich-server user: 1026:100 security_opt: - no-new-privileges:true env_file: - stack.env ports: - 8212:2283 volumes: - /volume1/docker/immich/upload:/usr/src/app/upload:rw restart: on-failure:5 depends_on: immich-redis: condition: service_healthy immich-db: condition: service_started immich-machine-learning: image: ghcr.io/immich-app/immich-machine-learning:release container_name: Immich-LEARNING hostname: immich-machine-learning user: 1026:100 security_opt: - no-new-privileges:true
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
Previous db image: image: tensorchord/pgvecto-rs:pg16-v0.2.0
25 replies
IImmich
Created by Shaquille_Oatmeal on 5/21/2025 in #help-desk-support
Immich upgrade to 1.133 on portsiner synology nas. No such DB error
services: immich-redis: image: redis container_name: Immich-REDIS hostname: immich-redis security_opt: - no-new-privileges:true healthcheck: test: ["CMD-SHELL", "redis-cli ping || exit 1"] user: 1026:100 environment: - TZ=Europe/Amsterdam volumes: - /volume1/docker/immich/redis:/data:rw restart: on-failure:5 immich-db: image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 container_name: Immich-DB hostname: immich-db security_opt: - no-new-privileges:true volumes: - /volume1/docker/immich/db:/var/lib/postgresql/data:rw environment: - TZ=Europe/Amsterdam - POSTGRES_DB=immich - POSTGRES_USER=immichuser - POSTGRES_PASSWORD=immichpw - DB_STORAGE_TYPE=HDD restart: on-failure:5 immich-server: image: ghcr.io/immich-app/immich-server:release container_name: Immich-SERVER hostname: immich-server user: 1026:100 security_opt: - no-new-privileges:true env_file: - stack.env ports: - 8212:2283 volumes: - /volume1/docker/immich/upload:/usr/src/app/upload:rw restart: on-failure:5 depends_on: immich-redis: condition: service_healthy immich-db: condition: service_started immich-machine-learning: image: ghcr.io/immich-app/immich-machine-learning:release container_name: Immich-LEARNING hostname: immich-machine-learning user: 1026:100 security_opt: - no-new-privileges:true env_file: - stack.env volumes: - /volume1/docker/immich/upload:/usr/src/app/upload:rw - /volume1/docker/immich/cache:/cache:rw - /volume1/docker/immich/matplotlib:/matplotlib:rw environment: - MPLCONFIGDIR=/matplotlib restart: on-failure:5 depends_on: immich-db: condition: service_started
25 replies