diff --git a/caMicroscope.yml b/caMicroscope.yml index bfee216..a7e197e 100644 --- a/caMicroscope.yml +++ b/caMicroscope.yml @@ -58,3 +58,23 @@ services: max-size: "10m" volumes: - ./images/:/images/ + environment: + DICOM_PORT: "11112" + DICOM_UI_PORT: "8042" + dicomsrv: + build: "https://github.com/camicroscope/dicomsrv.git" + container_name: ca-dicomsrv + restart: unless-stopped + stdin_open: true + tty: true + ports: + - "8042:8042" + - "11112:11112" + volumes: + - ./jwt_keys/:/root/keys/ + - ./images/:/images/ + - ./OrthancConfiguration.json:/root/src/Configuration.json + environment: + DICOM_PORT: "11112" + DICOM_UI_PORT: "8042" + CARACAL_BACK_HOST_PORT: "ca-back:4010" diff --git a/develop.yml b/develop.yml index e25fc62..ee20984 100644 --- a/develop.yml +++ b/develop.yml @@ -40,3 +40,23 @@ services: volumes: - ./images/:/images/ - ./cloud-upload-apis/:/cloud-upload-apis/ + environment: + DICOM_PORT: "11112" + DICOM_UI_PORT: "8042" + dicomsrv: + build: "https://github.com/camicroscope/dicomsrv.git" + container_name: ca-dicomsrv + restart: unless-stopped + stdin_open: true + tty: true + ports: + - "8042:8042" + - "11112:11112" + volumes: + - ./jwt_keys/:/root/keys/ + - ./images/:/images/ + - ./OrthancConfiguration.json:/root/src/Configuration.json + environment: + DICOM_PORT: "11112" + DICOM_UI_PORT: "8042" + CARACAL_BACK_HOST_PORT: "ca-back:4010"