hi!
using rpi 4 , upgrading from 105.1 to 109.2 ( removed microservices lines)
[+] Running 2/2
✘ immich-machine-learning Error context canceled 0.8s
✘ immich-server Error manifest unknown 0.8s
Error response from daemon: manifest unknown```
.env:
```.env
UPLOAD_LOCATION=/home/lumia/images
DB_DATA_LOCATION=./postgres
IMMICH_VERSION="1.109.2" #was previously 1.105.1
# Connection secret for postgres. You should change it to a random password
DB_PASSWORD=#############################
DB_USERNAME=mommyissues
DB_DATABASE_NAME=pics
docker-compose.yml:
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
env_file:
- .env
ports:
- 2283:3001
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}
volumes:
- model-cache:/cache
env_file:
- .env
restart: always```
.