4 Commits

2 changed files with 18 additions and 5 deletions

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: ghcr.io/immich-app/immich-server:v1.136.0
image: ghcr.io/immich-app/immich-server:v2.4.1
volumes:
- uploads:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
@ -27,11 +27,11 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.2.1+v1.136.0"
- "coop-cloud.${STACK_NAME}.version=1.1.0+v2.4.1"
immich-machine-learning: # TODO: this has to be that name, as the frontend tries to reach it at: http://immich-machine-learning:3003
image: ghcr.io/immich-app/immich-machine-learning:v1.136.0
image: ghcr.io/immich-app/immich-machine-learning:v2.4.1
ports:
- 3003:3003
volumes:
@ -41,7 +41,7 @@ services:
healthcheck:
disable: false
redis:
image: redis:8.2-alpine
image: redis:8.4-alpine
healthcheck:
test: redis-cli ping || exit 1
networks:

View File

@ -1 +1,14 @@
when upgrading from below 1.132.0 first need to run 1.132.0-1.136.0 first! see https://immich.app/errors/#typeorm-upgrade
when upgrading from below 1.132.0 first need to run 1.132.0-1.136.0 first! see https://immich.app/errors/#typeorm-upgrade
### DB migration failing: multiple primary keys for table "geodata_places"
https://github.com/immich-app/immich/issues/20167
I ran into this issue while upgrading and had to remove it manually:
```bash
abra app run immich.example.com database bash
psql -U postgres
\c immich
ALTER TABLE "geodata_places" DROP CONSTRAINT IF EXISTS "geodata_places_tmp_pkey";
```