-
Notifications
You must be signed in to change notification settings - Fork 6
0.1 orthanc preliminaries
This page describes how to setup/run the orthanc-fnndsc
docker image to act as a PACS server for pfdcm
.
-
DICOM data on the local machine
-
Some service for pushing DICOM data -- here we will use the FNNDSC
dicom_dirSend.bash
script. -
dcmtk
packages
sudo apt install dcmtk
git clone https://github.com/FNNDSC/orthanc-fnndsc.git
cd orthanc-fnndsc
git checkout persistent-db
sed -i 's/10.17.24.163/'\
$(ip route | grep -v docker | awk '{if(NF==11) print $9}' | head -n 1)\
'/g' orthanc.json
Ensure that the following setting is listed under the DicomModalities
block of orthanc.json
, being sure to replace <HOST_IP>
with its appropriate value.
"chips" : [ "CHIPS", "<HOST_IP>", 10402 ]
docker-compose up
An alternative method that might provide a bit more guidance in starting up orthanc
is to run the makefile.
sudo ./make.sh -h ${HOST_IP}:10402
Make sure the orthanc-fnndsc
container is instantiated
Navigate to a directory containing a set of subdirectories, each with DICOM data ending in dcm
.
dicom_dirSend.bash -v 10 -a ORTHANC -c CHIPS -h localhost -p 4242 -E dcm *
Check on the pushed data by navigating (in a browser) to http://localhost:8042 using orthanc
as the username and password.
--30--