update info on container registry

This commit is contained in:
Simon Gregor Ebner
2024-12-04 12:36:21 +01:00
parent db587ed9eb
commit cf0e495d0a

View File

@@ -1,9 +1,20 @@
# Container Registry
__Under Construction!__
The container registry is available under container.psi.ch.
The container registry is available under container.psi.ch. To push a container to the registry you need to tag it accordingly.
To push a container to the registry you need to tag it accordingly. Also you need to login to the registry before pushing.
``docker tag {MYCONTAINER} container.psi.ch/{NAMESPACE}/{YOURCONTAINER}:{TAG}``
```bash
# login to the container registry
docker login container.psi.ch
The container registry is only available inside the PSI-Network.
# tag you container
docker tag {MYCONTAINER} container.psi.ch/{NAMESPACE}/{YOURCONTAINER}:{TAG}
# push container
docker push container.psi.ch/{NAMESPACE}/{YOURCONTAINER}:{TAG}
```
```{note}
The container registry is __only__ available inside the PSI-Network.
```