Skip to content

Commit

Permalink
test: add docker compose file for an example setup with Orthanc
Browse files Browse the repository at this point in the history
  • Loading branch information
nickamzol committed Jul 21, 2024
1 parent d226f43 commit 63ad254
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 16 deletions.
6 changes: 0 additions & 6 deletions debug/README.md

This file was deleted.

10 changes: 0 additions & 10 deletions debug/docker-compose.yml

This file was deleted.

33 changes: 33 additions & 0 deletions debug/simple-setup/dicom-rst.yaml
Original file line number Diff line number Diff line change
@@ -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
23 changes: 23 additions & 0 deletions debug/simple-setup/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -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:
File renamed without changes.

0 comments on commit 63ad254

Please sign in to comment.