Skip to content

Commit

Permalink
updated the default OHIF configuration in the ohif image.
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Dec 13, 2023
1 parent e5d1369 commit ba66dc5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
13 changes: 7 additions & 6 deletions minimal-setup/keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: "3"
services:

nginx:
image: orthancteam/orthanc-nginx:23.11.0
image: orthancteam/orthanc-nginx:23.12.2
depends_on: [orthanc, orthanc-auth-service, keycloak]
restart: unless-stopped
ports: ["80:80"]
Expand All @@ -23,7 +23,7 @@ services:
ENABLE_OHIF: "true"

orthanc:
image: osimis/orthanc:23.11.0
image: osimis/orthanc:mainline-2023.11.26
volumes:
- orthanc-storage:/var/lib/orthanc/db
depends_on: [orthanc-db]
Expand Down Expand Up @@ -76,8 +76,9 @@ services:
}
orthanc-auth-service:
image: orthancteam/orthanc-auth-service:23.11.0
ports: ["8000:8000"]
image: orthancteam/orthanc-auth-service:23.12.2
# always disable port mapping in production !!!
# ports: ["8000:8000"]
# permissions can be customized in the permissions.json file
volumes:
- ./permissions.jsonc:/orthanc_auth_service/permissions.json
Expand All @@ -102,15 +103,15 @@ services:
POSTGRES_HOST_AUTH_METHOD: "trust"

ohif:
image: orthancteam/ohif-v3:23.11.0
image: orthancteam/ohif-v3:23.12.2
# uncomment if you want to customize ohif configuration
# volumes:
# - ./ohif-app-config.js:/usr/share/nginx/html/app-config.js
restart: unless-stopped


keycloak:
image: orthancteam/orthanc-keycloak:23.11.0
image: orthancteam/orthanc-keycloak:23.12.2
depends_on: [keycloak-db]
restart: unless-stopped
# healthcheck:
Expand Down
3 changes: 2 additions & 1 deletion minimal-setup/keycloak/ohif-app-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ window.config = {
supportsFuzzyMatching: false,
supportsWildcard: true,
staticWado: true,
singlepart: 'bulkdata,pdf,video'
singlepart: 'bulkdata,pdf,video',
acceptHeader: [ 'multipart/related; type=application/octet-stream; transfer-syntax=*']
},
}],
httpErrorHandler: error => {
Expand Down
6 changes: 6 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ SPDX-FileCopyrightText: 2022 - 2023 Orthanc Team SRL <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
-->


v 23.12.2
========

- updated the default OHIF configuration in the ohif image.

v 23.12.1
========
- added DOCUMENT_VIEW in meddream params, so that SR are viewable
Expand Down
3 changes: 2 additions & 1 deletion sources/ohif/default-app-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ window.config = {
supportsFuzzyMatching: false,
supportsWildcard: true,
staticWado: true,
singlepart: 'bulkdata'
singlepart: 'bulkdata,pdf,video',
acceptHeader: [ 'multipart/related; type=application/octet-stream; transfer-syntax=*']
},
}],
httpErrorHandler: error => {
Expand Down

0 comments on commit ba66dc5

Please sign in to comment.