From b92000d72a3fbe0c992c46dac6976135bd6e3d6f Mon Sep 17 00:00:00 2001 From: Jeffrey Bouter <6340770+jbouter@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:31:59 +0200 Subject: [PATCH] fix: FROM path in Dockerfile recommendation Pulling from `argoproj/argocd:latest` uses the preferred registry from the user. If this is dockerhub, it will pull a very outdated image of argocd. Signed-off-by: Jeffrey Bouter --- docs/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index f4d9e2e7..f44c3b66 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -99,7 +99,7 @@ spec: The following example builds an entirely customized repo-server from a Dockerfile, installing extra dependencies that may be needed for generating manifests. ```Dockerfile -FROM argoproj/argocd:latest +FROM quay.io/argoproj/argocd:latest # Switch to root for the ability to perform install USER root