Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/plexio/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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.
container_name: plexio
restart: unless-stopped
build:
Expand Down Expand Up @@ -48,4 +48,4 @@ services:
retries: 3
profiles:
- plexio
- all
- all
Loading