How to write my first *private* recipe

Hi guys

I am trying to trying to write my first plugin/recipe. Could you help me clarify some questions?

  1. Is it possible for me to assign a private docker image as the running environment? If so, where should I pass my registry auth credentials?
  2. If I manage to write it. Is it possible to push to pollination privately?

Thank you :slight_smile:

Hi @vwb!

  1. We donโ€™t have a solution to manage secrets for private docker images. We can probably help you by letting you to push to Pollination registry but it will be complicated.

  2. Yes. You can push recipes or plugins privately. The command will look something like this:

    pollination dsl push {{package-name}} --tag 0.0.1 --private --push-dependencies

To see all the options try:

pip install pollination-dsl
pollination dsl push --help
1 Like

Using public docker images will do for now that I am playing. But I want to use it at work, so it would be helpful to use private docker images from the company in the future.

Thanks Mostapha :muscle:

1 Like