From 515ad344386737e79581cb257ffe8f670cdaab8c Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Tue, 18 Mar 2025 14:15:14 +0100 Subject: [PATCH] ``` Add instructions for copying container images to private registry This update adds a new section in the README.md that provides instructions for copying container images to a private registry using Skopeo. It includes a command to log in to the Red Hat registry and an example command for copying the AMQ Broker image from the Red Hat registry to a specified private registry. These changes were necessary to assist users who need to transfer images securely and efficiently to a private environment for usage. No breaking changes were introduced. ``` --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 1420b67..027fdfe 100644 --- a/README.md +++ b/README.md @@ -349,6 +349,14 @@ application: [...] ``` +### copy container image to private registry +docker image copy +you must login at privat redhat registry before copy +``` +skopeo login registry.redhat.io +skopeo copy docker://registry.redhat.io/amq7/amq-broker:7.12 docker://registry.tuxnet.lan/amq7/amq-broker:7.12 +``` + ## KEYSTORE CREATION MINI-HOWTO In order to deploy SSL-enabled templates, a secret with valid Java Truststore and Keystore files must be created.