Skip to content

fix: plexio arm64 compatibility#93

Open
RenewedKeys wants to merge 1 commit intoViren070:mainfrom
RenewedKeys:plexio-fix
Open

fix: plexio arm64 compatibility#93
RenewedKeys wants to merge 1 commit intoViren070:mainfrom
RenewedKeys:plexio-fix

Conversation

@RenewedKeys
Copy link
Copy Markdown
Contributor

Problem

The plexio service fails to start on ARM64 hosts (e.g., Oracle Cloud ARM VPS) with the following error:

! plexio The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested

This is because image: ghcr.io/vanchaxy/plexio causes Docker Compose to attempt pulling the pre-built image from GHCR, which is only published for linux/amd64. Even though a build: block is defined, the registry image reference takes priority and triggers the platform mismatch.

Fix

  • Changed image: ghcr.io/vanchaxy/plexio to image: plexio so Docker Compose uses the local build instead of trying to pull the amd64-only registry image.

Copilot AI review requested due to automatic review settings March 2, 2026 02:05
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR addresses an ARM64 startup failure for the plexio service by avoiding an amd64-only prebuilt image pull and aiming to force a local build instead.

Changes:

  • Updated the plexio service image reference from a GHCR image to a local image name to avoid platform mismatch pulls.
  • Minor formatting/normalization in the profiles list section (no functional change).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

services:
plexio:
image: ghcr.io/vanchaxy/plexio
image: plexio
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using image: plexio still leaves Compose free to pull an external image named plexio (e.g., from Docker Hub) depending on the command/pull policy, which can reintroduce the same class of startup failures and/or run an unintended image. To guarantee ARM64 hosts always use the local build, either remove the image: field entirely (let Compose name the built image) or keep it but set an explicit pull_policy: never (and/or use a clearly local-only name).

Suggested change
image: plexio
image: plexio
pull_policy: never

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants