To deploy your plug-in on a cluster, you need to build an image and push it to an image registry.
Procedure
-
Build the image with the following command:
$ docker build -t quay.io/my-repositroy/my-plugin:latest .
-
Optional: If you want to test your image, run the following command:
$ docker run -it --rm -d -p 9001:80 quay.io/my-repository/my-plugin:latest
-
Push the image by running the following command:
$ docker push quay.io/my-repository/my-plugin:latest