Description
I thought the Arch property was always in the ImageInspect
|
if (!('Arch' in image) || typeof image.Arch !== 'string') { |
|
console.warn('missing arch on image', image); |
|
continue; |
|
} |
However, this may be empty in some scenarios (need to be defined??)
Checking the Podman API, the Arch property is specific to podman, meaning when using docker engine, this would be undefined, preventing from using the application with a docker engine as backend.
Logs from users
warn : main ↪️ [hummingbird] missing arch on image [object Object]
warn : main ↪️ [hummingbird] missing arch on image [object Object]
warn : main ↪️ [hummingbird] missing arch on image [object Object]
warn : main ↪️ [hummingbird] missing arch on image [object Object]
warn : main ↪️ [hummingbird] missing arch on image [object Object]
Description
I thought the
Archproperty was always in theImageInspectpodman-desktop-hummingbird-ext/packages/backend/src/services/alternative-service.ts
Lines 193 to 196 in 28b8609
However, this may be empty in some scenarios (need to be defined??)
Checking the Podman API, the
Archproperty is specific to podman, meaning when using docker engine, this would be undefined, preventing from using the application with a docker engine as backend.Logs from users