Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ sections:
- file: applications/headless_execution
- file: applications/secret_manager
- file: applications/eoapi
- file: applications/container_registry

- title: Tutorials
sections:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions applications/container_registry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Container Registry

## Login in UI

The credentials can be found in the secret **registry-login** in the [credentials manager](./secret_manager.md) or your workspace.

```{figure} assets/credentials-manager/registry-credentials-detail.png
---
name: registry-credentials-detail
---
Credential 'registry-login' contains the login information for the container registry: registry server FQDN (URL), username & password
```

## Upload images to registry

1. Login
```shell
docker login -u <username> registry.[workspace-name].[cluster].eox.at # e.g. registry.hub-test-ws1.hub-test.eox.at
```
Type in the password when asked.

2. Tag your image
```shell
docker tag my-image:latest registry.[workspace-name].[cluster].eox.at/my-image:latest
```

3. Push image to registry

```shell
docker push registry.[workspace-name].[cluster].eox.at/my-image:latest
```

After a successful upload, the image is visible in the UI and in the file browser, and can be used in Argo Workflows, etc.