Skip to content

gradienthealth/simple-dicomweb-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

simple-dicomweb-server

This is a simple docker-compose app to run an Orthanc dicom server. Orthanc is meant to emulate a production dicom PACS which supports dicomweb.

Getting Started

  1. Download docker for your operating system.

  2. Install docker-compose for your operating system.

  3. Git clone this repo with git clone https://github.com/gradienthealth/simple-dicomweb-server.git

  4. Change into the root of this repo and run docker-compose up

  5. Navigate to http://localhost:3337/app/explorer.html#upload and upload your dicom data via the Orthanc UI.

image

  1. Get the StudyUUID metadata from all the studies with the following linux command line. This will produce a file called studies.csv in the directory the command is run.
docker run -i --network host --rm curlimages/curl -k http://localhost:3337/tools/find \
    -d '{"Level" : "Study", "Expand":true, "Query":{"PatientID" : "*"}}' |
docker run --rm -i imega/jq \
    -r '.[].MainDicomTags.StudyInstanceUID' > studies.csv

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published