Hi JitteryCoyote63 , I don't believe this is possible. Might want to open a GitHub feature request for this.
I'm curious, what is the use case? Why not use some default python docker image as default on agent level and then when you need a specific image put into the experiment configuration?
Yea so I assume that training my models using docker will be slightly slower so I'd like to avoid it. For the rest using docker is convenient
If you use some lightweight image like python:3.9-bullseye
the setup time is really negligible especially if the image is already on the machine compared to how long the training takes.
How about the overhead of running the training on docker on a VM?
I guess that's a good point but really applicable if your training is CPU intensive. If your training is GPU intensive I guess most of the load goes on the GPU so running over VM (EC2 instances for example) shouldn't have much of a difference but this is worthy of testing.
I found this article talking about performance
https://blog.equinix.com/blog/2022/01/04/3-reasons-why-you-should-consider-running-containers-on-bare-metal/
But it doesn't really say what the difference in performance is.
Maybe SuccessfulKoala55 , JuicyFox94 or AgitatedDove14 might have some input on this interesting point
JitteryCoyote63 let me just add that while this is indeed an interesting feature (and completely possible to add, needless to say), I think your description is a bit too simplistic - I've come across many people who want to run their experiments in docker, but not to specify an image on each experiment, usually since they always use the same docker image, and set it as the agent's default image 🙂