Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 687 Bytes

how-tos.rst

File metadata and controls

26 lines (18 loc) · 687 Bytes

How Tos

To access the internal OpenShift registry from outside, you can use the following example:

oc login https://console.appuio.ch
OCTOKEN=$(oc whoami -t)
docker login -u MYUSERNAME -p $OCTOKEN registry.appuio.ch
docker pull busybox
docker tag busybox registry.appuio.ch/MYPROJECT/busybox
docker push registry.appuio.ch/MYPROJECT/busybox
oc get imagestreams -n MYPROJECT

checkout the APPUiO Cron Job Example