Blueprint image can't be found, but exists and works when added through the gui

I’m working on setting up a blueprint for educational purposes. I’ve got the basic database workflow working, but the second service I need comes from a docker image. I’m using the image type and providing it a docker image that exists in hub (and works when added as a web service in the GUI).

At the top of the blueprint page it shows the correct docker image (and when clicked goes to the proper place), but can’t be found for the image pull

I can’t post a GitHub url, so here’s the render.yaml i’m using:

# Exported from Render on 2026-02-02T13:59:43Z
version: "1"
databases:
- name: fusionauth
  databaseName: fusionauth_db
  plan: free
  ipAllowList:
  - source: 0.0.0.0/0
    description: everywhere
  postgresMajorVersion: "18"

services:
- type: web
  name: fusionauth-app:latest
  runtime: image
  image:
    url: fusionauth/fusionauth-app:latest
  plan: free
  envVars:
  - key: DATABASE_URL
    fromDatabase:
      name: fusionauth
      property: connectionString
  - key: POSTGRES_PASSWORD
    fromDatabase:
      name: fusionauth
      property: password
  - key: POSTGRES_USER
    fromDatabase:
      name: fusionauth
      property: user
  - key: FUSIONAUTH_APP_RUNTIME_MODE
    value: development
  - key: DATABASE_USERNAME
    fromDatabase:
      name: fusionauth
      property: user

As an update on this, I’ve now tried in the same repository the Docker hello-world image and the httpd:trixie image. Both fail the same way.

Both can’t find the image, but in the UI, the displayed docker image, when clicked, goes to the proper page on docker hub

I’ve also now tested with Render’s n8n example that exists in the docs and get the same error. This seems to be a bug with how the docker images are pulled…