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.