From 4f97ca44a866256c491aca011634b58f6ced4cda Mon Sep 17 00:00:00 2001 From: WPT Goad Date: Fri, 1 Nov 2024 11:42:24 +0000 Subject: [PATCH] Update connecting-external.html.markerb Fixing this documentation page as it causes an error which i found the solution to here: https://community.fly.io/t/failed-to-fetch-an-image-or-build-from-source-could-not-find-image-docker-io-flyio-postgres-xx-x/19602 Requires using the image postgres-flex not just postgres --- postgres/connecting/connecting-external.html.markerb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/postgres/connecting/connecting-external.html.markerb b/postgres/connecting/connecting-external.html.markerb index f313d7a64c..c450f4cb6e 100644 --- a/postgres/connecting/connecting-external.html.markerb +++ b/postgres/connecting/connecting-external.html.markerb @@ -69,19 +69,19 @@ fly image show --app ``` ```out Image Details - Registry = registry-1.docker.io - Repository = flyio/postgres - Tag = 14.4 - Version = v0.0.32 + Registry = docker-hub-mirror.fly.io + Repository = flyio/postgres-flex + Tag = 16.4 + Version = v0.0.62 ``` Deploy your cluster, using `--image` with the `image:tag` found in the previous step: ```cmd -fly deploy . --app --image flyio/postgres: +fly deploy . --app --image flyio/postgres-flex: ``` -As an example, if you are running Postgres 14.x you would specify `flyio/postgres:14` as your target image. +As an example, if you are running Postgres 16.x you would specify `flyio/postgres-flex:16` as your target image. After the deployment completes, you can verify your `services` configuration by running the `fly services list` command: