I am trying to send Patients scans to Orthanc server (docker based), getting an error while sending DICOM from Horos to Orthanc. using docker-compose to run my applications on Windows.
note: able to send files from Orthanc to Horos after adding DicomModaliteis to Orthanc configurations.
App details:
- Installed Horos v3 on MAc
- Installed docker based Orthanc on Windows 10 Home using Docker Toolbox, docker v19.x
Error:
DICOM StoreSCU operation failed.
DICOM Network Failure (STORE-SCU)
Association Request Failed 0006:031b Failed to establish association
0006:0317 Peer aborted Association (or never connected)
0006:031c TCP Initialization Error: Connection refused
docker-compose.yml
version: "3.7"
services:
orthanc:
image: jodogne/orthanc-plugins:1.6.1
container_name: orthancserver
restart: always
ports:
- "4242:4242"
- "8042:8042"
networks:
- mynetwork
volumes:
- /tmp/orthanc-db/:/var/lib/orthanc/db/
- /c/Users/AppUser/Desktop/Project/orthanc.json:/etc/orthanc/orthanc.json:ro
networks:
mynetwork:
external: true
This is because of Host IP not connected for the port 4242, Need to enter the port on Oracle VM's network, the Docker toolbox using the VM with Linux as default.
Steps to enable ports on VM: