This donet tool can be used to migrate dcm files from one PACS to another
In medical domain software development we are often required to to some Poc using dicom servers. Re-creating the data can be hastle. So this tool can be used to copy data from one dicom server to another.
Run the make file
make buildThis will generate the binaries in the bin folder in the current directory.
Now edit the appsettings.json file in bin directory with the Source and Destination Dicom server details
To run the data migration tool, go to bin and run folling command
dotnet PacsDataMigrationTool.dllThe same can be acheived through docker also.
First build the code using make.
Make changes to appsettings.json in bin directory
Then run
docker-compose upTo shutdown the service run
docker-compose down