fix link to container registry
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 6s

This commit is contained in:
ebner 2025-03-27 10:43:07 +01:00
parent 5bfa074c9a
commit a6910a08cb

View File

@ -7,12 +7,12 @@ This is the PSI rhel9 docker base image
The image can be used as follows: The image can be used as follows:
```bash ```bash
docker run -it --rm container.psi.ch/images/rhel9 docker run -it --rm gitea.psi.ch/images/rhel9
``` ```
To base other images upon this image use To base other images upon this image use
```dockerfile ```dockerfile
FROM container.psi.ch/images/rhel9 FROM gitea.psi.ch/images/rhel9
``` ```
in your Dockerfile in your Dockerfile
@ -20,11 +20,11 @@ in your Dockerfile
To build the image use: To build the image use:
```bash ```bash
docker build --platform linux/x86_64 -t container.psi.ch/images/rhel9 . docker build --platform linux/x86_64 -t gitea.psi.ch/images/rhel9 .
``` ```
To push the image to the central container registry do: To push the image to the central container registry do:
```bash ```bash
docker login container.psi.ch docker login gitea.psi.ch
docker push container.psi.ch/images/rhel9 docker push gitea.psi.ch/images/rhel9
``` ```