VTK Trame Docker Setup

Like before I created a trame template application using CookieCutter and chosen App with Components. Then I build the vue-components as mentioned in README. They built successfully. Next I built the docker scripts for server i.e. build_server.sh. Next I ran it using run_server.sh. In that I was getting that timeout error. So as per your suggestion

I added trame part in my apps.yml file. I rebuilt the server directory and ran the application again following same steps. This time I was able to view cone example in browser on the host machine on url http://localhost:8080/volume-viewer.html. I tried accessing same from another machine using url http://192.168.60.177:8080/volume-viewer.html. 192.168.60.177 is the IP of host machine on which docker is deployed. On accessing this URL I got the error that I shared.

Original apps.yml

PyWebVue: # Default app under /index.html
  app: volume-viewer
volume-viewer: # /volume-viewer.html
  app: volume-viewer

Modified apps.yml file content

PyWebVue: # Default app under /index.html
  app: volume-viewer
volume-viewer: # /volume-viewer.html
  app: volume-viewer

trame:
  www_modules:
    - volume_viewer.module
  app: volume_viewer

Only saw some error in launcherLog.log which I also share in previous post.