immich-app / immich

High performance self-hosted photo and video management solution.
https://immich.app
GNU Affero General Public License v3.0
49.77k stars 2.63k forks source link

Can update server from v1.100.0 to v1.101.0 on OMV6 with Docker Compose. #8827

Closed kcajjones closed 6 months ago

kcajjones commented 6 months ago

The bug

When trying to pull the latest image to upgrade the server via OMV6 docker compose I get an error message and the server doesn't upgrade. See log file for details.

The OS that Immich Server is running on

RaspianOS Buster / OMV6

Version of Immich Server

V1.101.0

Version of Immich Mobile App

V1.101.0

Platform with the issue

Your docker-compose.yml content

#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    command: ['start.sh', 'immich']
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - Immich.env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always

  immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    command: ['start.sh', 'microservices']
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - Immich.env
    depends_on:
      - redis
      - database
    restart: always

  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:
      - Immich.env
    restart: always

  redis:
    container_name: immich_redis
    image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:51d6c56749a4243096327e3fb964a48ed92254357108449cb6e23999c37773c5
    restart: always

  database:
    container_name: immich_postgres
    image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
    volumes:
      - pgdata:/var/lib/postgresql/data
    restart: always

volumes:
  pgdata:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/Immich/library/

#IMMICH_CONFIG_FILE=/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Data/Immich-config/immich.config

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
DB_PASSWORD=Forestry7@5

# The values below this line do not need to be changed
###################################################################################
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

REDIS_HOSTNAME=immich_redis

Reproduction steps

Using the OMV6 Web interface, try and pull the latest immich docker image v1.101.0 with an existing immich server v1.100.0 running.

Relevant log output

Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; export LANGUAGE=; docker compose --file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/Immich/Immich.yml' --env-file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/Immich/Immich.env' --env-file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/global.env' pull 2>&1': immich-microservices Skipped - Image is already being pulled by immich-server
immich-machine-learning Pulling
database Pulling
redis Pulling
immich-server Pulling
c2964e85ea54 Already exists
d3436c315a5d Already exists
603ae72c83b1 Already exists
bcabfc6c415b Already exists
d4787ee6f8d4 Already exists
153637b38f3d Already exists
73905358592c Already exists
d9d5ad0ce614 Already exists
9f377d4a627e Already exists
a22892a232b9 Already exists
4552474f3498 Already exists
e69a9d72eade Already exists
6f228ce72fe1 Already exists
273fe225f9d3 Already exists
d4f0db4b8b7c Already exists
4f4fb700ef54 Already exists
68fc0e6450ed Pulling fs layer
c018ebd18d3f Pulling fs layer
79ea62e75fc5 Pulling fs layer
bc408b8f08d9 Pulling fs layer
ea620c903fcc Pulling fs layer
4c88d03978df Pulling fs layer
8ed641ec80a9 Pulling fs layer
61e7d343ec9c Pulling fs layer
84c7a71fe7fd Pulling fs layer
ebc0ff93ae2b Pulling fs layer
bc408b8f08d9 Waiting
ea620c903fcc Waiting
4c88d03978df Waiting
8ed641ec80a9 Waiting
61e7d343ec9c Waiting
ebc0ff93ae2b Waiting
84c7a71fe7fd Waiting
59f5764b1f6d Already exists
55af26b7addf Already exists
580c698f01d5 Already exists
20b492075b43 Already exists
17c53b71cbcc Already exists
79ea62e75fc5 Downloading [==================================================>] 373B/373B
79ea62e75fc5 Verifying Checksum
79ea62e75fc5 Download complete
07996eee06e1 Already exists
c018ebd18d3f Downloading [> ] 6.89kB/552kB
afd6387970f5 Already exists
68fc0e6450ed Downloading [> ] 539.8kB/90.8MB
c018ebd18d3f Downloading [==================================================>] 552kB/552kB
c018ebd18d3f Verifying Checksum
c018ebd18d3f Download complete
89eaf756ccc0 Pulling fs layer
f8a0f8ab136f Pulling fs layer
587b97df1f09 Pulling fs layer
8f925dd687a1 Pulling fs layer
1901d4bd1036 Pulling fs layer
89eaf756ccc0 Waiting
f8a0f8ab136f Waiting
587b97df1f09 Waiting
8f925dd687a1 Waiting
1901d4bd1036 Waiting
database Pulled
redis Pulled
68fc0e6450ed Downloading [=> ] 2.702MB/90.8MB
68fc0e6450ed Downloading [==> ] 5.39MB/90.8MB
bc408b8f08d9 Downloading [> ] 97.39kB/9.162MB
68fc0e6450ed Downloading [====> ] 8.094MB/90.8MB
ea620c903fcc Downloading [=========> ] 1.378kB/7.493kB
ea620c903fcc Downloading [==================================================>] 7.493kB/7.493kB
ea620c903fcc Verifying Checksum
ea620c903fcc Download complete
bc408b8f08d9 Downloading [===========> ] 2.063MB/9.162MB
68fc0e6450ed Downloading [=====> ] 10.8MB/90.8MB
bc408b8f08d9 Downloading [====================> ] 3.833MB/9.162MB
68fc0e6450ed Downloading [=======> ] 12.96MB/90.8MB
bc408b8f08d9 Downloading [==============================> ] 5.604MB/9.162MB
68fc0e6450ed Downloading [========> ] 15.12MB/90.8MB
bc408b8f08d9 Downloading [==========================================> ] 7.872MB/9.162MB
4c88d03978df Downloading [> ] 2.756kB/266.5kB
bc408b8f08d9 Verifying Checksum
bc408b8f08d9 Download complete
4c88d03978df Download complete
68fc0e6450ed Downloading [=========> ] 17.29MB/90.8MB
68fc0e6450ed Downloading [===========> ] 19.99MB/90.8MB
68fc0e6450ed Downloading [============> ] 22.69MB/90.8MB
8ed641ec80a9 Downloading [==================================================>] 548B/548B
8ed641ec80a9 Verifying Checksum
8ed641ec80a9 Download complete
61e7d343ec9c Downloading [> ] 4.134kB/303.8kB
68fc0e6450ed Downloading [=============> ] 24.85MB/90.8MB
61e7d343ec9c Downloading [==================================================>] 303.8kB/303.8kB
61e7d343ec9c Verifying Checksum
61e7d343ec9c Download complete
68fc0e6450ed Downloading [==============> ] 27.02MB/90.8MB
68fc0e6450ed Downloading [================> ] 29.72MB/90.8MB
68fc0e6450ed Downloading [=================> ] 32.42MB/90.8MB
84c7a71fe7fd Downloading [======> ] 1.378kB/11.15kB
84c7a71fe7fd Downloading [==================================================>] 11.15kB/11.15kB
84c7a71fe7fd Verifying Checksum
84c7a71fe7fd Download complete
ebc0ff93ae2b Downloading [======> ] 1.378kB/11.1kB
ebc0ff93ae2b Verifying Checksum
ebc0ff93ae2b Download complete
68fc0e6450ed Downloading [===================> ] 34.59MB/90.8MB
68fc0e6450ed Downloading [====================> ] 37.29MB/90.8MB
68fc0e6450ed Downloading [======================> ] 39.99MB/90.8MB
89eaf756ccc0 Downloading [===========================================> ] 1.378kB/1.595kB
89eaf756ccc0 Downloading [==================================================>] 1.595kB/1.595kB
89eaf756ccc0 Download complete
89eaf756ccc0 Extracting [==================================================>] 1.595kB/1.595kB
89eaf756ccc0 Extracting [==================================================>] 1.595kB/1.595kB
68fc0e6450ed Downloading [=======================> ] 42.16MB/90.8MB
f8a0f8ab136f Downloading [> ] 539.7kB/175.8MB
68fc0e6450ed Downloading [========================> ] 43.78MB/90.8MB
f8a0f8ab136f Downloading [> ] 2.695MB/175.8MB
587b97df1f09 Downloading [==================================> ] 1.378kB/2.018kB
587b97df1f09 Download complete
68fc0e6450ed Downloading [=========================> ] 45.94MB/90.8MB
f8a0f8ab136f Downloading [=> ] 4.858MB/175.8MB
68fc0e6450ed Downloading [==========================> ] 48.1MB/90.8MB
f8a0f8ab136f Downloading [=> ] 7.02MB/175.8MB
68fc0e6450ed Downloading [===========================> ] 50.81MB/90.8MB
f8a0f8ab136f Downloading [==> ] 9.183MB/175.8MB
68fc0e6450ed Downloading [=============================> ] 52.97MB/90.8MB
8f925dd687a1 Downloading [==================================================>] 692B/692B
8f925dd687a1 Verifying Checksum
8f925dd687a1 Download complete
f8a0f8ab136f Downloading [===> ] 11.35MB/175.8MB
68fc0e6450ed Downloading [==============================> ] 55.13MB/90.8MB
f8a0f8ab136f Downloading [===> ] 13.51MB/175.8MB
68fc0e6450ed Downloading [===============================> ] 57.84MB/90.8MB
f8a0f8ab136f Downloading [====> ] 15.67MB/175.8MB
68fc0e6450ed Downloading [=================================> ] 60MB/90.8MB
f8a0f8ab136f Downloading [====> ] 17.29MB/175.8MB
1901d4bd1036 Downloading [====> ] 1.378kB/14.97kB
1901d4bd1036 Downloading [==================================================>] 14.97kB/14.97kB
1901d4bd1036 Verifying Checksum
1901d4bd1036 Download complete
68fc0e6450ed Downloading [==================================> ] 62.16MB/90.8MB
f8a0f8ab136f Downloading [=====> ] 19.46MB/175.8MB
68fc0e6450ed Downloading [===================================> ] 63.78MB/90.8MB
f8a0f8ab136f Downloading [=====> ] 21.08MB/175.8MB
68fc0e6450ed Downloading [====================================> ] 65.95MB/90.8MB
f8a0f8ab136f Downloading [======> ] 23.24MB/175.8MB
68fc0e6450ed Downloading [=====================================> ] 68.11MB/90.8MB
f8a0f8ab136f Downloading [=======> ] 25.94MB/175.8MB
68fc0e6450ed Downloading [======================================> ] 70.27MB/90.8MB
f8a0f8ab136f Downloading [=======> ] 28.11MB/175.8MB
68fc0e6450ed Downloading [=======================================> ] 72.43MB/90.8MB
f8a0f8ab136f Downloading [========> ] 30.27MB/175.8MB
68fc0e6450ed Downloading [========================================> ] 74.06MB/90.8MB
f8a0f8ab136f Downloading [=========> ] 32.43MB/175.8MB
68fc0e6450ed Downloading [=========================================> ] 76.22MB/90.8MB
f8a0f8ab136f Downloading [=========> ] 34.59MB/175.8MB
68fc0e6450ed Downloading [===========================================> ] 78.38MB/90.8MB
f8a0f8ab136f Downloading [==========> ] 36.76MB/175.8MB
68fc0e6450ed Downloading [============================================> ] 81.08MB/90.8MB
f8a0f8ab136f Downloading [===========> ] 38.92MB/175.8MB
68fc0e6450ed Downloading [=============================================> ] 83.25MB/90.8MB
f8a0f8ab136f Downloading [===========> ] 40.54MB/175.8MB
68fc0e6450ed Downloading [===============================================> ] 85.41MB/90.8MB
f8a0f8ab136f Downloading [============> ] 42.7MB/175.8MB
68fc0e6450ed Downloading [================================================> ] 87.57MB/90.8MB
f8a0f8ab136f Downloading [============> ] 44.87MB/175.8MB
68fc0e6450ed Downloading [=================================================> ] 90.28MB/90.8MB
68fc0e6450ed Verifying Checksum
68fc0e6450ed Download complete
f8a0f8ab136f Downloading [=============> ] 47.03MB/175.8MB
f8a0f8ab136f Downloading [=============> ] 49.19MB/175.8MB
f8a0f8ab136f Downloading [==============> ] 51.36MB/175.8MB
f8a0f8ab136f Downloading [===============> ] 53.52MB/175.8MB
f8a0f8ab136f Downloading [===============> ] 55.68MB/175.8MB
f8a0f8ab136f Downloading [================> ] 57.84MB/175.8MB
f8a0f8ab136f Downloading [=================> ] 60.01MB/175.8MB
68fc0e6450ed Extracting [> ] 557.1kB/90.8MB
f8a0f8ab136f Downloading [=================> ] 62.17MB/175.8MB
f8a0f8ab136f Downloading [==================> ] 64.33MB/175.8MB
f8a0f8ab136f Downloading [==================> ] 66.49MB/175.8MB
f8a0f8ab136f Downloading [===================> ] 68.66MB/175.8MB
f8a0f8ab136f Downloading [====================> ] 70.82MB/175.8MB
68fc0e6450ed Extracting [> ] 1.114MB/90.8MB
f8a0f8ab136f Downloading [====================> ] 72.98MB/175.8MB
f8a0f8ab136f Downloading [=====================> ] 75.15MB/175.8MB
f8a0f8ab136f Downloading [=====================> ] 77.31MB/175.8MB
f8a0f8ab136f Downloading [======================> ] 78.93MB/175.8MB
f8a0f8ab136f Downloading [=======================> ] 81.09MB/175.8MB
68fc0e6450ed Extracting [> ] 1.671MB/90.8MB
f8a0f8ab136f Downloading [=======================> ] 83.26MB/175.8MB
f8a0f8ab136f Downloading [========================> ] 85.42MB/175.8MB
f8a0f8ab136f Downloading [========================> ] 87.58MB/175.8MB
f8a0f8ab136f Downloading [=========================> ] 89.74MB/175.8MB
f8a0f8ab136f Downloading [==========================> ] 91.91MB/175.8MB
f8a0f8ab136f Downloading [==========================> ] 93.53MB/175.8MB
f8a0f8ab136f Downloading [===========================> ] 95.69MB/175.8MB
f8a0f8ab136f Downloading [===========================> ] 97.31MB/175.8MB
f8a0f8ab136f Downloading [============================> ] 99.48MB/175.8MB
f8a0f8ab136f Downloading [============================> ] 101.6MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 102.7MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 103.8MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 105.4MB/175.8MB
f8a0f8ab136f Downloading [==============================> ] 107MB/175.8MB
f8a0f8ab136f Downloading [===============================> ] 109.2MB/175.8MB
68fc0e6450ed Extracting [=> ] 2.228MB/90.8MB
f8a0f8ab136f Downloading [===============================> ] 111.4MB/175.8MB
f8a0f8ab136f Downloading [================================> ] 113.5MB/175.8MB
f8a0f8ab136f Downloading [================================> ] 115.7MB/175.8MB
f8a0f8ab136f Downloading [=================================> ] 117.9MB/175.8MB
f8a0f8ab136f Downloading [==================================> ] 120MB/175.8MB
f8a0f8ab136f Downloading [==================================> ] 122.2MB/175.8MB
f8a0f8ab136f Downloading [===================================> ] 124.3MB/175.8MB
f8a0f8ab136f Downloading [===================================> ] 126.5MB/175.8MB
f8a0f8ab136f Downloading [====================================> ] 128.7MB/175.8MB
f8a0f8ab136f Downloading [=====================================> ] 131.4MB/175.8MB
f8a0f8ab136f Downloading [=====================================> ] 133.5MB/175.8MB
f8a0f8ab136f Downloading [======================================> ] 135.7MB/175.8MB
f8a0f8ab136f Downloading [=======================================> ] 137.9MB/175.8MB
f8a0f8ab136f Downloading [=======================================> ] 140MB/175.8MB
f8a0f8ab136f Downloading [========================================> ] 142.2MB/175.8MB
f8a0f8ab136f Downloading [=========================================> ] 144.4MB/175.8MB
f8a0f8ab136f Downloading [=========================================> ] 146.5MB/175.8MB
68fc0e6450ed Extracting [=> ] 2.785MB/90.8MB
f8a0f8ab136f Downloading [==========================================> ] 148.7MB/175.8MB
f8a0f8ab136f Downloading [==========================================> ] 150.8MB/175.8MB
f8a0f8ab136f Downloading [===========================================> ] 153MB/175.8MB
f8a0f8ab136f Downloading [============================================> ] 155.2MB/175.8MB
f8a0f8ab136f Downloading [============================================> ] 157.3MB/175.8MB
f8a0f8ab136f Downloading [=============================================> ] 159.5MB/175.8MB
f8a0f8ab136f Downloading [=============================================> ] 161.7MB/175.8MB
f8a0f8ab136f Downloading [==============================================> ] 163.8MB/175.8MB
68fc0e6450ed Extracting [=> ] 3.342MB/90.8MB
f8a0f8ab136f Downloading [===============================================> ] 166MB/175.8MB
f8a0f8ab136f Downloading [===============================================> ] 168.1MB/175.8MB
f8a0f8ab136f Downloading [================================================> ] 170.3MB/175.8MB
f8a0f8ab136f Downloading [=================================================> ] 172.5MB/175.8MB
f8a0f8ab136f Downloading [=================================================> ] 175.2MB/175.8MB
f8a0f8ab136f Verifying Checksum
f8a0f8ab136f Download complete
68fc0e6450ed Extracting [==> ] 3.899MB/90.8MB
failed to register layer: error creating overlay mount to /srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Docker/overlay2/d492fa819f27bcebb005d8ff92220b3c81368f1f60efc1e13d6b1f3bc489eb40/merged: no such file or directory

OMV\ExecException: Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; export LANGUAGE=; docker compose --file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/Immich/Immich.yml' --env-file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/Immich/Immich.env' --env-file '/srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Compose/global.env' pull 2>&1': immich-microservices Skipped - Image is already being pulled by immich-server
immich-machine-learning Pulling
database Pulling
redis Pulling
immich-server Pulling
c2964e85ea54 Already exists
d3436c315a5d Already exists
603ae72c83b1 Already exists
bcabfc6c415b Already exists
d4787ee6f8d4 Already exists
153637b38f3d Already exists
73905358592c Already exists
d9d5ad0ce614 Already exists
9f377d4a627e Already exists
a22892a232b9 Already exists
4552474f3498 Already exists
e69a9d72eade Already exists
6f228ce72fe1 Already exists
273fe225f9d3 Already exists
d4f0db4b8b7c Already exists
4f4fb700ef54 Already exists
68fc0e6450ed Pulling fs layer
c018ebd18d3f Pulling fs layer
79ea62e75fc5 Pulling fs layer
bc408b8f08d9 Pulling fs layer
ea620c903fcc Pulling fs layer
4c88d03978df Pulling fs layer
8ed641ec80a9 Pulling fs layer
61e7d343ec9c Pulling fs layer
84c7a71fe7fd Pulling fs layer
ebc0ff93ae2b Pulling fs layer
bc408b8f08d9 Waiting
ea620c903fcc Waiting
4c88d03978df Waiting
8ed641ec80a9 Waiting
61e7d343ec9c Waiting
ebc0ff93ae2b Waiting
84c7a71fe7fd Waiting
59f5764b1f6d Already exists
55af26b7addf Already exists
580c698f01d5 Already exists
20b492075b43 Already exists
17c53b71cbcc Already exists
79ea62e75fc5 Downloading [==================================================>] 373B/373B
79ea62e75fc5 Verifying Checksum
79ea62e75fc5 Download complete
07996eee06e1 Already exists
c018ebd18d3f Downloading [> ] 6.89kB/552kB
afd6387970f5 Already exists
68fc0e6450ed Downloading [> ] 539.8kB/90.8MB
c018ebd18d3f Downloading [==================================================>] 552kB/552kB
c018ebd18d3f Verifying Checksum
c018ebd18d3f Download complete
89eaf756ccc0 Pulling fs layer
f8a0f8ab136f Pulling fs layer
587b97df1f09 Pulling fs layer
8f925dd687a1 Pulling fs layer
1901d4bd1036 Pulling fs layer
89eaf756ccc0 Waiting
f8a0f8ab136f Waiting
587b97df1f09 Waiting
8f925dd687a1 Waiting
1901d4bd1036 Waiting
database Pulled
redis Pulled
68fc0e6450ed Downloading [=> ] 2.702MB/90.8MB
68fc0e6450ed Downloading [==> ] 5.39MB/90.8MB
bc408b8f08d9 Downloading [> ] 97.39kB/9.162MB
68fc0e6450ed Downloading [====> ] 8.094MB/90.8MB
ea620c903fcc Downloading [=========> ] 1.378kB/7.493kB
ea620c903fcc Downloading [==================================================>] 7.493kB/7.493kB
ea620c903fcc Verifying Checksum
ea620c903fcc Download complete
bc408b8f08d9 Downloading [===========> ] 2.063MB/9.162MB
68fc0e6450ed Downloading [=====> ] 10.8MB/90.8MB
bc408b8f08d9 Downloading [====================> ] 3.833MB/9.162MB
68fc0e6450ed Downloading [=======> ] 12.96MB/90.8MB
bc408b8f08d9 Downloading [==============================> ] 5.604MB/9.162MB
68fc0e6450ed Downloading [========> ] 15.12MB/90.8MB
bc408b8f08d9 Downloading [==========================================> ] 7.872MB/9.162MB
4c88d03978df Downloading [> ] 2.756kB/266.5kB
bc408b8f08d9 Verifying Checksum
bc408b8f08d9 Download complete
4c88d03978df Download complete
68fc0e6450ed Downloading [=========> ] 17.29MB/90.8MB
68fc0e6450ed Downloading [===========> ] 19.99MB/90.8MB
68fc0e6450ed Downloading [============> ] 22.69MB/90.8MB
8ed641ec80a9 Downloading [==================================================>] 548B/548B
8ed641ec80a9 Verifying Checksum
8ed641ec80a9 Download complete
61e7d343ec9c Downloading [> ] 4.134kB/303.8kB
68fc0e6450ed Downloading [=============> ] 24.85MB/90.8MB
61e7d343ec9c Downloading [==================================================>] 303.8kB/303.8kB
61e7d343ec9c Verifying Checksum
61e7d343ec9c Download complete
68fc0e6450ed Downloading [==============> ] 27.02MB/90.8MB
68fc0e6450ed Downloading [================> ] 29.72MB/90.8MB
68fc0e6450ed Downloading [=================> ] 32.42MB/90.8MB
84c7a71fe7fd Downloading [======> ] 1.378kB/11.15kB
84c7a71fe7fd Downloading [==================================================>] 11.15kB/11.15kB
84c7a71fe7fd Verifying Checksum
84c7a71fe7fd Download complete
ebc0ff93ae2b Downloading [======> ] 1.378kB/11.1kB
ebc0ff93ae2b Verifying Checksum
ebc0ff93ae2b Download complete
68fc0e6450ed Downloading [===================> ] 34.59MB/90.8MB
68fc0e6450ed Downloading [====================> ] 37.29MB/90.8MB
68fc0e6450ed Downloading [======================> ] 39.99MB/90.8MB
89eaf756ccc0 Downloading [===========================================> ] 1.378kB/1.595kB
89eaf756ccc0 Downloading [==================================================>] 1.595kB/1.595kB
89eaf756ccc0 Download complete
89eaf756ccc0 Extracting [==================================================>] 1.595kB/1.595kB
89eaf756ccc0 Extracting [==================================================>] 1.595kB/1.595kB
68fc0e6450ed Downloading [=======================> ] 42.16MB/90.8MB
f8a0f8ab136f Downloading [> ] 539.7kB/175.8MB
68fc0e6450ed Downloading [========================> ] 43.78MB/90.8MB
f8a0f8ab136f Downloading [> ] 2.695MB/175.8MB
587b97df1f09 Downloading [==================================> ] 1.378kB/2.018kB
587b97df1f09 Download complete
68fc0e6450ed Downloading [=========================> ] 45.94MB/90.8MB
f8a0f8ab136f Downloading [=> ] 4.858MB/175.8MB
68fc0e6450ed Downloading [==========================> ] 48.1MB/90.8MB
f8a0f8ab136f Downloading [=> ] 7.02MB/175.8MB
68fc0e6450ed Downloading [===========================> ] 50.81MB/90.8MB
f8a0f8ab136f Downloading [==> ] 9.183MB/175.8MB
68fc0e6450ed Downloading [=============================> ] 52.97MB/90.8MB
8f925dd687a1 Downloading [==================================================>] 692B/692B
8f925dd687a1 Verifying Checksum
8f925dd687a1 Download complete
f8a0f8ab136f Downloading [===> ] 11.35MB/175.8MB
68fc0e6450ed Downloading [==============================> ] 55.13MB/90.8MB
f8a0f8ab136f Downloading [===> ] 13.51MB/175.8MB
68fc0e6450ed Downloading [===============================> ] 57.84MB/90.8MB
f8a0f8ab136f Downloading [====> ] 15.67MB/175.8MB
68fc0e6450ed Downloading [=================================> ] 60MB/90.8MB
f8a0f8ab136f Downloading [====> ] 17.29MB/175.8MB
1901d4bd1036 Downloading [====> ] 1.378kB/14.97kB
1901d4bd1036 Downloading [==================================================>] 14.97kB/14.97kB
1901d4bd1036 Verifying Checksum
1901d4bd1036 Download complete
68fc0e6450ed Downloading [==================================> ] 62.16MB/90.8MB
f8a0f8ab136f Downloading [=====> ] 19.46MB/175.8MB
68fc0e6450ed Downloading [===================================> ] 63.78MB/90.8MB
f8a0f8ab136f Downloading [=====> ] 21.08MB/175.8MB
68fc0e6450ed Downloading [====================================> ] 65.95MB/90.8MB
f8a0f8ab136f Downloading [======> ] 23.24MB/175.8MB
68fc0e6450ed Downloading [=====================================> ] 68.11MB/90.8MB
f8a0f8ab136f Downloading [=======> ] 25.94MB/175.8MB
68fc0e6450ed Downloading [======================================> ] 70.27MB/90.8MB
f8a0f8ab136f Downloading [=======> ] 28.11MB/175.8MB
68fc0e6450ed Downloading [=======================================> ] 72.43MB/90.8MB
f8a0f8ab136f Downloading [========> ] 30.27MB/175.8MB
68fc0e6450ed Downloading [========================================> ] 74.06MB/90.8MB
f8a0f8ab136f Downloading [=========> ] 32.43MB/175.8MB
68fc0e6450ed Downloading [=========================================> ] 76.22MB/90.8MB
f8a0f8ab136f Downloading [=========> ] 34.59MB/175.8MB
68fc0e6450ed Downloading [===========================================> ] 78.38MB/90.8MB
f8a0f8ab136f Downloading [==========> ] 36.76MB/175.8MB
68fc0e6450ed Downloading [============================================> ] 81.08MB/90.8MB
f8a0f8ab136f Downloading [===========> ] 38.92MB/175.8MB
68fc0e6450ed Downloading [=============================================> ] 83.25MB/90.8MB
f8a0f8ab136f Downloading [===========> ] 40.54MB/175.8MB
68fc0e6450ed Downloading [===============================================> ] 85.41MB/90.8MB
f8a0f8ab136f Downloading [============> ] 42.7MB/175.8MB
68fc0e6450ed Downloading [================================================> ] 87.57MB/90.8MB
f8a0f8ab136f Downloading [============> ] 44.87MB/175.8MB
68fc0e6450ed Downloading [=================================================> ] 90.28MB/90.8MB
68fc0e6450ed Verifying Checksum
68fc0e6450ed Download complete
f8a0f8ab136f Downloading [=============> ] 47.03MB/175.8MB
f8a0f8ab136f Downloading [=============> ] 49.19MB/175.8MB
f8a0f8ab136f Downloading [==============> ] 51.36MB/175.8MB
f8a0f8ab136f Downloading [===============> ] 53.52MB/175.8MB
f8a0f8ab136f Downloading [===============> ] 55.68MB/175.8MB
f8a0f8ab136f Downloading [================> ] 57.84MB/175.8MB
f8a0f8ab136f Downloading [=================> ] 60.01MB/175.8MB
68fc0e6450ed Extracting [> ] 557.1kB/90.8MB
f8a0f8ab136f Downloading [=================> ] 62.17MB/175.8MB
f8a0f8ab136f Downloading [==================> ] 64.33MB/175.8MB
f8a0f8ab136f Downloading [==================> ] 66.49MB/175.8MB
f8a0f8ab136f Downloading [===================> ] 68.66MB/175.8MB
f8a0f8ab136f Downloading [====================> ] 70.82MB/175.8MB
68fc0e6450ed Extracting [> ] 1.114MB/90.8MB
f8a0f8ab136f Downloading [====================> ] 72.98MB/175.8MB
f8a0f8ab136f Downloading [=====================> ] 75.15MB/175.8MB
f8a0f8ab136f Downloading [=====================> ] 77.31MB/175.8MB
f8a0f8ab136f Downloading [======================> ] 78.93MB/175.8MB
f8a0f8ab136f Downloading [=======================> ] 81.09MB/175.8MB
68fc0e6450ed Extracting [> ] 1.671MB/90.8MB
f8a0f8ab136f Downloading [=======================> ] 83.26MB/175.8MB
f8a0f8ab136f Downloading [========================> ] 85.42MB/175.8MB
f8a0f8ab136f Downloading [========================> ] 87.58MB/175.8MB
f8a0f8ab136f Downloading [=========================> ] 89.74MB/175.8MB
f8a0f8ab136f Downloading [==========================> ] 91.91MB/175.8MB
f8a0f8ab136f Downloading [==========================> ] 93.53MB/175.8MB
f8a0f8ab136f Downloading [===========================> ] 95.69MB/175.8MB
f8a0f8ab136f Downloading [===========================> ] 97.31MB/175.8MB
f8a0f8ab136f Downloading [============================> ] 99.48MB/175.8MB
f8a0f8ab136f Downloading [============================> ] 101.6MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 102.7MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 103.8MB/175.8MB
f8a0f8ab136f Downloading [=============================> ] 105.4MB/175.8MB
f8a0f8ab136f Downloading [==============================> ] 107MB/175.8MB
f8a0f8ab136f Downloading [===============================> ] 109.2MB/175.8MB
68fc0e6450ed Extracting [=> ] 2.228MB/90.8MB
f8a0f8ab136f Downloading [===============================> ] 111.4MB/175.8MB
f8a0f8ab136f Downloading [================================> ] 113.5MB/175.8MB
f8a0f8ab136f Downloading [================================> ] 115.7MB/175.8MB
f8a0f8ab136f Downloading [=================================> ] 117.9MB/175.8MB
f8a0f8ab136f Downloading [==================================> ] 120MB/175.8MB
f8a0f8ab136f Downloading [==================================> ] 122.2MB/175.8MB
f8a0f8ab136f Downloading [===================================> ] 124.3MB/175.8MB
f8a0f8ab136f Downloading [===================================> ] 126.5MB/175.8MB
f8a0f8ab136f Downloading [====================================> ] 128.7MB/175.8MB
f8a0f8ab136f Downloading [=====================================> ] 131.4MB/175.8MB
f8a0f8ab136f Downloading [=====================================> ] 133.5MB/175.8MB
f8a0f8ab136f Downloading [======================================> ] 135.7MB/175.8MB
f8a0f8ab136f Downloading [=======================================> ] 137.9MB/175.8MB
f8a0f8ab136f Downloading [=======================================> ] 140MB/175.8MB
f8a0f8ab136f Downloading [========================================> ] 142.2MB/175.8MB
f8a0f8ab136f Downloading [=========================================> ] 144.4MB/175.8MB
f8a0f8ab136f Downloading [=========================================> ] 146.5MB/175.8MB
68fc0e6450ed Extracting [=> ] 2.785MB/90.8MB
f8a0f8ab136f Downloading [==========================================> ] 148.7MB/175.8MB
f8a0f8ab136f Downloading [==========================================> ] 150.8MB/175.8MB
f8a0f8ab136f Downloading [===========================================> ] 153MB/175.8MB
f8a0f8ab136f Downloading [============================================> ] 155.2MB/175.8MB
f8a0f8ab136f Downloading [============================================> ] 157.3MB/175.8MB
f8a0f8ab136f Downloading [=============================================> ] 159.5MB/175.8MB
f8a0f8ab136f Downloading [=============================================> ] 161.7MB/175.8MB
f8a0f8ab136f Downloading [==============================================> ] 163.8MB/175.8MB
68fc0e6450ed Extracting [=> ] 3.342MB/90.8MB
f8a0f8ab136f Downloading [===============================================> ] 166MB/175.8MB
f8a0f8ab136f Downloading [===============================================> ] 168.1MB/175.8MB
f8a0f8ab136f Downloading [================================================> ] 170.3MB/175.8MB
f8a0f8ab136f Downloading [=================================================> ] 172.5MB/175.8MB
f8a0f8ab136f Downloading [=================================================> ] 175.2MB/175.8MB
f8a0f8ab136f Verifying Checksum
f8a0f8ab136f Download complete
68fc0e6450ed Extracting [==> ] 3.899MB/90.8MB
failed to register layer: error creating overlay mount to /srv/dev-disk-by-uuid-0cd58d09-8778-4b10-911d-82edab080941/OMV6-Docker/overlay2/d492fa819f27bcebb005d8ff92220b3c81368f1f60efc1e13d6b1f3bc489eb40/merged: no such file or directory in /usr/share/openmediavault/engined/rpc/compose.inc:693
Stack trace:
#0 /usr/share/php/openmediavault/rpc/serviceabstract.inc(620): OMVRpcServiceCompose->{closure}('/tmp/bgstatusYn...', '/tmp/bgoutputFb...')
#1 /usr/share/openmediavault/engined/rpc/compose.inc(696): OMV\Rpc\ServiceAbstract->execBgProc(Object(Closure))
#2 [internal function]: OMVRpcServiceCompose->doCommand(Array, Array)
#3 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array)
#4 /usr/share/php/openmediavault/rpc/rpc.inc(86): OMV\Rpc\ServiceAbstract->callMethod('doCommand', Array, Array)
#5 /usr/sbin/omv-engined(537): OMV\Rpc\Rpc::call('Compose', 'doCommand', Array, Array, 1)
#6 {main}

Additional information

No response

mmomjian commented 6 months ago

I think there is a dangling / errored overlay version in your images. I recommend trying the following to pull a new version of the images:

docker compose down
docker image prune -a
docker compose up -d