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.
```
This commit is contained in:
Marko Oldenburg 2025-03-18 14:15:14 +01:00
parent 611c197650
commit 515ad34438

View File

@ -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 ## KEYSTORE CREATION MINI-HOWTO
In order to deploy SSL-enabled templates, a secret with valid Java Truststore and Keystore files must be created. In order to deploy SSL-enabled templates, a secret with valid Java Truststore and Keystore files must be created.