Skip to content

Commit

Permalink
chore: Add helpful files for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
nickamzol committed Apr 15, 2024
1 parent dbf0660 commit 924cc4a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions debug/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This directory contains some helpful files for debugging.

| File | Description |
|----------------------|-----------------------------------------------------------------------------------------------------------|
| `docker-compose.yml` | Docker Compose file to launch ORTHANC with DIMSE services on port 4242. The UI is available on port 8042. |

10 changes: 10 additions & 0 deletions debug/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
orthanc:
image: jodogne/orthanc-plugins
ports:
- "4242:4242"
- "8042:8042"
environment:
- ORTHANC_NAME=ORTHANC
volumes:
- ./orthanc.json:/etc/orthanc/orthanc.json:ro
21 changes: 21 additions & 0 deletions debug/orthanc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"RemoteAccessAllowed": true,
"AuthenticationEnabled": false,
"HasWadoRsUniversalTransferSyntax": false,
"DicomModalities": {
"DICOM-RST": ["DICOM-RST", "host.docker.internal", 7001]
},
"Plugins": [
"/usr/local/share/orthanc/plugins/libOrthancDicomWeb.so",
"/usr/local/share/orthanc/plugins/libOrthancExplorer2.so"
],
"OrthancExplorer2": {
"Enable": true,
"IsDefaultOrthancUI": true
},
"DicomWeb" : {
"Servers" : {
"DICOM-RST" : [ "http://host.docker.internal:8080/pacs/ORTHANC" ]
}
}
}

0 comments on commit 924cc4a

Please sign in to comment.