21 lines
545 B
Markdown
21 lines
545 B
Markdown
# Container Registry
|
|
|
|
The container registry is available under container.psi.ch.
|
|
|
|
To push a container to the registry you need to tag it accordingly. Also you need to login to the registry before pushing.
|
|
|
|
```bash
|
|
# login to the container registry
|
|
docker login container.psi.ch
|
|
|
|
# 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.
|
|
```
|