You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 17, 2025. It is now read-only.
I've created a Docker container based on the official base image:
FROM ibmfunctions/action-nodejs-v16:1.0.3
RUN npm install randomNpmPackage
I built it and pushed it to my private container registry; then, I created an action with the command: ibmcloud fn action update kuuid --docker privateCloudRegistry/myProject/myApp:0.0.1 index.js
I'm writing in case someone gets the same error in the future.
Two takeaways here:
1 - Docker container must be mublic
2 - Container registry must be Docker Hub (as of now, it's the only supported container registry)
I've created a Docker container based on the official base image:
I built it and pushed it to my private container registry; then, I created an action with the command:
ibmcloud fn action update kuuid --docker privateCloudRegistry/myProject/myApp:0.0.1 index.js
I got this:
I realized the
--docker
option works with Docker Hub registry only ?--docker string use provided docker image (a path on DockerHub) to run the action
Is there a way to use my customized Docker container hosted in my container registry? (which happens to be the IBM container registry)
The text was updated successfully, but these errors were encountered: