Skip to content

Commit

Permalink
Remove UCVNA as its never used (#183)
Browse files Browse the repository at this point in the history
Seems like orthanc is promiscuous so we don't need to add `UCVNA`
  • Loading branch information
stefpiatek authored Dec 14, 2023
1 parent 08ac69c commit 09ac04d
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 80 deletions.
4 changes: 0 additions & 4 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ ENABLE_DICOM_WEB=true
STUDY_TIME_OFFSET=
SALT_VALUE=PIXL

# UCVNA DICOM node information
VNA_AE_TITLE=
VNA_DICOM_PORT=
VNA_IP_ADDR=

# UCVNAQR DICOM node information
VNAQR_AE_TITLE=
Expand Down
3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,6 @@ services:
ORTHANC_RAW_AE_TITLE: ${ORTHANC_RAW_AE_TITLE}
ORTHANC_AUTOROUTE_RAW_TO_ANON: ${ORTHANC_AUTOROUTE_RAW_TO_ANON}
ORTHANC_RAW_MAXIMUM_STORAGE_SIZE: ${ORTHANC_RAW_MAXIMUM_STORAGE_SIZE}
VNA_AE_TITLE : ${VNA_AE_TITLE}
VNA_DICOM_PORT: ${VNA_DICOM_PORT}
VNA_IP_ADDR: ${VNA_IP_ADDR}
VNAQR_AE_TITLE : ${VNAQR_AE_TITLE}
VNAQR_DICOM_PORT: ${VNAQR_DICOM_PORT}
VNAQR_IP_ADDR: ${VNAQR_IP_ADDR}
Expand Down
5 changes: 0 additions & 5 deletions orthanc/orthanc-raw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ ORTHANC_RAW_AE_TITLE=
# PIXL Orthanc anon instance
ORTHANC_ANON_AE_TITLE=
# UCVNA DICOM node information
VNA_AE_TITLE=
VNA_DICOM_PORT=
VNA_IP_ADDR=
# UCVNAQR DICOM node information
VNAQR_AE_TITLE=
VNAQR_DICOM_PORT=
Expand Down
16 changes: 0 additions & 16 deletions orthanc/orthanc-raw/config/dicom.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,6 @@
"DicomAet" : "${ORTHANC_RAW_AE_TITLE}",

"DicomModalities" : {
"UCVNA" : {
"AET" : "${VNA_AE_TITLE}",
"Port" : "${VNA_DICOM_PORT}",
"Host" : "${VNA_IP_ADDR}",
"Manufacturer" : "Generic",
"AllowEcho" : true,
"AllowFind" : false,
"AllowFindWorklist" : false,
"AllowGet" : false,
"AllowMove" : false,
"AllowStore" : true,
"AllowStorageCommitment" : false,
"AllowTranscoding" : true,
"UseDicomTls" : false,
"Timeout" : 60
},
"UCVNAQR" : {
"AET" : "${VNAQR_AE_TITLE}",
"Port" : "${VNAQR_DICOM_PORT}",
Expand Down
22 changes: 0 additions & 22 deletions pixl_pacs/tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ version: "3.8"

volumes:
orthanc-raw-data:
vna-data:
vna-qr-data:


Expand All @@ -33,8 +32,6 @@ services:
condition: service_healthy
orthanc-raw:
condition: service_started
vna:
condition: service_started
healthcheck:
interval: 10s
timeout: 30s
Expand All @@ -56,22 +53,6 @@ services:
ports:
- "9001:8000"

vna:
image: osimis/orthanc:22.9.0-full-stable
environment:
ORTHANC_NAME: "VNA"
ORTHANC_USERNAME: "orthanc"
ORTHANC_PASSWORD: "orthanc"
ORTHANC_AE_TITLE: "VNA"
RAW_AE_TITLE: "PIXLRAW"
RAW_DICOM_PORT: "4242"
RAW_IP_ADDR: "orthanc-raw" # aka. hostname
ports:
- "4242:4242"
- "8042:8042"
volumes:
- ${PWD}/../../test/vna_config/:/run/secrets:ro

vna-qr:
image: osimis/orthanc:22.9.0-full-stable
environment:
Expand All @@ -97,9 +78,6 @@ services:
ORTHANC_USERNAME: "orthanc"
ORTHANC_PASSWORD: "orthanc"
ORTHANC_AE_TITLE: "PIXLRAW"
VNA_AE_TITLE : "VNA"
VNA_DICOM_PORT: "4242"
VNA_IP_ADDR: "vna" # aka. hostname
VNAQR_AE_TITLE : "VNAQR"
VNAQR_DICOM_PORT: "4242"
VNAQR_IP_ADDR: "vna-qr"
Expand Down
6 changes: 0 additions & 6 deletions pixl_pacs/tests/orthanc_raw_config/dicom.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
"DicomAlwaysAllowEcho" : true,
"DicomCheckModalityHost" : true,
"DicomModalities" : {
"UCVNA" : {
"AET" : "${VNA_AE_TITLE}",
"Port" : "${VNA_DICOM_PORT}",
"Host" : "${VNA_IP_ADDR}",
"Manufacturer" : "Generic"
},
"UCVNAQR" : {
"AET" : "${VNAQR_AE_TITLE}",
"Port" : "${VNAQR_DICOM_PORT}",
Expand Down
5 changes: 0 additions & 5 deletions test/.env.test.sample
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ ENABLE_DICOM_WEB=true
ORTHANC_AUTOROUTE_ANON_TO_AZURE=false
PIXL_DICOM_TRANSFER_TIMEOUT=240

# UCVNA DICOM node information
VNA_AE_TITLE=VNA
VNA_DICOM_PORT=4242
VNA_IP_ADDR=vna

# UCVNAQR DICOM node information
VNAQR_AE_TITLE=VNAQR
VNAQR_DICOM_PORT=4242
Expand Down
19 changes: 0 additions & 19 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,13 @@
version: "3.8"

volumes:
vna-data:
vna-qr-data:

networks:
pixl-net:

services:

vna:
image: osimis/orthanc:22.9.0-full-stable
environment:
ORTHANC_NAME: "VNA"
ORTHANC_USERNAME: "orthanc"
ORTHANC_PASSWORD: "orthanc"
ORTHANC_AE_TITLE: ${VNA_AE_TITLE}
RAW_AE_TITLE: ${ORTHANC_RAW_AE_TITLE}
RAW_DICOM_PORT: "4242"
RAW_IP_ADDR: "orthanc-raw" # aka. hostname
ports:
- "4242:4242"
- "8042:8042"
volumes:
- ${PWD}/vna_config/:/run/secrets:ro
networks:
pixl-net:

vna-qr:
image: osimis/orthanc:22.9.0-full-stable
environment:
Expand Down

0 comments on commit 09ac04d

Please sign in to comment.