Reputation: 450
Azure Machine Learning provides provides encapsulation of the environment for your code to run. As far as I know you can specify custom Docker images and Dockerfiles to create an environment.
But in my specific use case, I want to run the script inside a specific Docker container. Does Azure ML provide some ways to run a script inside a custom Docker container?
Upvotes: 0
Views: 326
Reputation: 560
That is not supported at the moment unless you do wget to get the script to execute. Docker context support will be added soon and should unblock the scenario.
Upvotes: 0