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