Not able to run Dtale on root url

55 Views Asked by At

We have a requirement to run the multiple Dtale serives in one docker container. So we are planning to run each dtale service with a unique app-root and port. Below is my code looks like.

import dtale
d = dtale.show(pd.DataFrame([1,2,3,4,5]),host='localhost',app_root="/satya",port="40000")
d._main_url

d1 = dtale.show(pd.DataFrame([1,2,3,4,5]),host='localhost',app_root="/test",port="40001")
d1._main_url

Below is the error we are getting when accessing the dtale url.

enter image description here

I am expecting two dtale services running on

  1. localhost:40000/satya/main/1
  2. localhost:40001/test/main/1
0

There are 0 best solutions below