Ok, this is my stack on portainer: version: "3.8" services: immich-redis: image: redis:7 container_name: Immich-REDIS hostname: immich-redis security_opt: - no-new-privileges:true user: "1000:10" environment: - TZ=Europe/Rome volumes: - /volume1/docker/immich_new/redis:/data:rw restart: always immich-db: image: ghcr.io/immich-app/postgres:16-vectorchord0.3.0-pgvectors0.2.0 container_name: Immich-DB hostname: immich-db security_opt: - no-new-privileges:true volumes: - /volume1/docker/immich_new/db:/var/lib/postgresql/data:rw environment: - TZ=Europe/Rome - POSTGRES_DB=immich - POSTGRES_USER=im***** - POSTGRES_PASSWORD=****** - DB_STORAGE_TYPE=HDD restart: always immich-server: image: ghcr.io/immich-app/immich-server:release container_name: Immich-SERVER hostname: immich-server user: 1000:10 security_opt: - no-new-privileges:true env_file: - stack.env ports: - "5***1:2283" volumes: - /volume1/docker/immich_new/upload:/usr/src/app/upload:rw - /home/Stefano/Foto_Video****:ro - /home/Stefano/Foto_Video****a:ro - /home/Stefano/Foto_Video*****ia:ro - /home/Stefano/Foto_Video******ina:ro - /home/Stefano/Foto_Video****aro:ro - /home/Stefano/Foto_Video****essia:ro - /home/Stefano/Foto_Video*****no:ro devices: - /dev/dri:/dev/dri restart: always depends_on: - immich-redis - immich-db immich-machine-learning: image: ghcr.io/immich-app/immich-machine-learning:release container_name: Immich-LEARNING hostname: immich-machine-learning user: 1000:10 security_opt: - no-new-privileges:true env_file: - stack.env environment: - NODE_ENV=production - TRANSFORMERS_CACHE=/cache - MPLCONFIGDIR=/matplotlib - EXECUTION_PROVIDERS=OpenVINOExecutionProvider volumes: - /volume1/docker/immich_new/upload:/usr/src/app/upload:rw - /volume1/docker/immich_new/cache:/cache:rw - /volume1/docker/immich_new/matplotlib:/matplotlib:rw devices: - /dev/dri:/dev/dri restart: always depends_on: - immich-db