Docker ohif v3.9.3 difference v3.10.1

Hello everyone. I wanted to ask. I have Docker Compose with Ohif version 3.9.3, which works fine. It connects to Orthanc through a lightweight Nginx (to resolve the CORS issue), and everything runs perfectly. Now, if I change the Ohif image to v3.10.1, with everything else unchanged in Compose, it no longer loads. I don’t understand why. Can anyone help me figure out what could be happening?

---------------ohif.conf--------------------------
window.config = {
routerBasename: ‘/’,
extensions: ,
modes: ,
showStudyList: true,
dataSources: [
{
friendlyName: ‘Orthanc local’,
namespace: ‘@ohif/extension-default.dataSourcesModule.dicomweb’,
sourceName: ‘dicomweb’,
configuration: {
name: ‘orthanc’,
wadoUriRoot: ‘/orthanc/dicom-web’,
qidoRoot: ‘/orthanc/dicom-web’,
wadoRoot: ‘/orthanc/dicom-web’,

        qidoSupportsIncludeField: false,
        supportsReject: false,
        imageRendering: 'wadors',
        thumbnailRendering: 'wadors',
        enableStudyLazyLoad: true,
        supportsFuzzyMatching: false,
        supportsWildcard: true,
        staticWado: true,
        singlepart: 'bulkdata',
        acceptHeader: [ 'multipart/related; type=application/octet-stream; transfer-syntax=*'],
        bulkDataURI: {
          enabled: true,
          relativeResolution: 'studies',
          // In this scenario, Orthanc is not aware that is being served at http://localhost/orthanc/ so we must tell OHIF to fix
          // the bulkDataURI
          startsWith: 'http://localhost/',
          prefixWith: '/orthanc/',
        },
      },
    }],
defaultDataSourceName: 'dicomweb',

};

Greetings, everyone.

Hello,

I’ve the same issue. The app-config.js loads but the page stays blank. Have you managed to make it work? If you succeeded, can you please share how?

Regards,

Hello. I’ve tried different configurations, but nothing works. The strange thing is that running the source code works. But when I try to run it from Docker, it no longer works. I’ve tried many things, but to no avail.