How to add my own custom docker image in Kubernetes playground

please assist :
How to add my own custom docker image in Kubernetes playground. I want to use my image to perform deployments in kubernetes playground.

The simplest thing to do is just use dockerhub and post your images there. Then you can use them like any other image.

If you really have to use your own image repository, then you’ll need to put it somewhere on the public internet, and configure a docker-registry secret for it. I haven’t tried this, but I don’t see why this wouldn’t work for you.

1 Like

I’d like to recommend GitHub container registry. You can store your Dockerfile in GitHub and create a GitHub action to build your image and store is on GHCR, which is publicly accessible.

1 Like