diff --git a/debug/README.md b/debug/README.md deleted file mode 100644 index e8d28a1..0000000 --- a/debug/README.md +++ /dev/null @@ -1,6 +0,0 @@ -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. | - diff --git a/debug/docker-compose.yml b/debug/docker-compose.yml deleted file mode 100644 index 6e3c53f..0000000 --- a/debug/docker-compose.yml +++ /dev/null @@ -1,10 +0,0 @@ -services: - orthanc: - image: jodogne/orthanc-plugins - ports: - - "4242:4242" - - "8042:8042" - environment: - - ORTHANC_NAME=ORTHANC - volumes: - - ./orthanc.json:/etc/orthanc/orthanc.json:ro diff --git a/debug/simple-setup/dicom-rst.yaml b/debug/simple-setup/dicom-rst.yaml new file mode 100644 index 0000000..16927a9 --- /dev/null +++ b/debug/simple-setup/dicom-rst.yaml @@ -0,0 +1,33 @@ +telemetry: + # sentry: $SENTRY_DSN + level: INFO +server: + aet: DICOM-RST + http: + interface: 0.0.0.0 + port: 8080 + max-upload-size: 50000000 + request-timeout: 60000 + graceful-shutdown: true + dimse: + - aet: DICOM-RST + interface: 0.0.0.0 + port: 7001 + uncompressed: true +aets: + - aet: ORTHANC + host: host.docker.internal + port: 4242 + backend: DIMSE + pool: + size: 16 + timeout: 10000 + qido-rs: + timeout: 10000 + stow-rs: + timeout: 10000 + wado-rs: + timeout: 30000 + mode: concurrent + receivers: + - DICOM-RST \ No newline at end of file diff --git a/debug/simple-setup/docker-compose.yaml b/debug/simple-setup/docker-compose.yaml new file mode 100644 index 0000000..b47a2ff --- /dev/null +++ b/debug/simple-setup/docker-compose.yaml @@ -0,0 +1,23 @@ +services: + dicom-rst: + image: ghcr.io/umessen/dicom-rst:latest + ports: + - "8080:8080" + - "7001:7001" + volumes: + - ./dicom-rst.yaml:/config.yaml:ro + networks: + - dimse + orthanc: + image: jodogne/orthanc-plugins + ports: + - "4242:4242" + - "8042:8042" + environment: + - ORTHANC_NAME=ORTHANC + volumes: + - ./orthanc.json:/etc/orthanc/orthanc.json:ro + networks: + - dimse +networks: + dimse: \ No newline at end of file diff --git a/debug/orthanc.json b/debug/simple-setup/orthanc.json similarity index 100% rename from debug/orthanc.json rename to debug/simple-setup/orthanc.json