File tree Expand file tree Collapse file tree 1 file changed +30
-3
lines changed
Expand file tree Collapse file tree 1 file changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,38 @@ The On-Premise Database Controller enables provisioning of Oracle Databases (PDB
4141 ``` sh
4242 docker login container-registry.oracle.com
4343 ```
44- > ** _NOTE4:_** if you are going to deploy inside minikube, you need to switch the env to it, issuing:
44+
45+ * Once the image is ready, you may need to push it to your Docker Images Repository to pull it during CDB controller resource creation.
46+
47+ The steps
48+ 1. check the ords docker image creation issuing:
4549 ` ` ` sh
46- eval $( minikube docker-env )
50+ docker images
4751 ` ` `
48- * Once the image is ready, you may need to push it to your Docker Images Repository to pull it during CDB controller resource creation.
52+ example:
53+ ```
54+ $ docker images
55+ REPOSITORY TAG IMAGE ID CREATED SIZE
56+ oracle/ords-dboper latest 887652b3e87f 17 hours ago 777MB
57+ ```
58+
59+ 2. make the required docker tag issuing:
60+ ```
61+ docker tag oracle/ords-dboper <Docker Container repository >
62+ ```
63+ example:
64+ ```
65+ docker tag oracle/ords-dboper lin.ocir.io/mytenancy/mycontainer/myrepo/ords-dboper
66+ ```
67+
68+ 3. Push the image over the repository
69+ ```
70+ docker push <tag name created above >
71+ ```
72+ example:
73+ ```
74+ docker push lin.ocir.io/mytenancy/mycontainer/myrepo/ords-dboper: latest
75+ ```
4976
5077+ ### Install cert-manager
5178
You can’t perform that action at this time.
0 commit comments