skip to Main Content

I have an AzureML Compute Instance, I need to develop a notebook using a very particular environment built from a docker image.
I can’t find any way to build the environment from the docker image and connect it to the notebook as a running kernel so that I can use it interactively.

The only thing I found were the custom environments, but they’re not attachable to interactive notebooks, but only for executing scripts.

Can you help me?

2

Answers


  1. Actually, you can not completely customize the compute instance but below are some options you can use for your docker image or any script.

    Whenever you trying to create compute instance.

    enter image description here

    You select the machine which satisfies your workloads.

    enter image description here

    and in Applications tab you can add

    enter image description here

    1. Setup creation and startup script
    2. also applications where you can give your docker image.

    But you can not create an entire instance with docker image.

    My suggestion is to create one script and use it for provisioning.

    Login or Signup to reply.
  2. I’m facing the same problem. OP were you able to find a solution ?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search