adding dcm4che docker-compose file
This commit is contained in:
parent
8a4b334840
commit
09e0601a4f
@ -21,3 +21,22 @@ then, access the application at (http://localhost)[http://localhost]
|
|||||||
`$ docker-compose -f docker-compose-orthanc.yml up -d`
|
`$ docker-compose -f docker-compose-orthanc.yml up -d`
|
||||||
|
|
||||||
then, access the application at (http://localhost)[http://localhost]
|
then, access the application at (http://localhost)[http://localhost]
|
||||||
|
|
||||||
|
**remember that you have to access orthanc application and include your studies there**
|
||||||
|
|
||||||
|
## Local Dcm4che
|
||||||
|
#### build
|
||||||
|
|
||||||
|
`$ docker-compose -f docker-compose-dcm4che.yml build`
|
||||||
|
|
||||||
|
#### run
|
||||||
|
`$ docker-compose -f docker-compose-orthanc.yml up -d`
|
||||||
|
|
||||||
|
then, access the application at (http://localhost)[http://localhost]
|
||||||
|
|
||||||
|
**remember that you have to access dcm4che application and include your studies there**
|
||||||
|
You can use the following command to import your studies into dcm4che
|
||||||
|
|
||||||
|
`$ docker run -v {YOUR_STUDY_FOLDER}:/tmp --rm --network=docker_dcm4chee_default dcm4che/dcm4che-tools:5.14.0 storescu -cDCM4CHEE@arc:11112 /tmp`
|
||||||
|
|
||||||
|
**make sure that your Docker network name is docker_dcm4chee_default or change it to the right one**
|
||||||
4
docker/dcm4che/docker-compose-dcm4che.env
Normal file
4
docker/dcm4che/docker-compose-dcm4che.env
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
STORAGE_DIR=/storage/fs1
|
||||||
|
POSTGRES_DB=pacsdb
|
||||||
|
POSTGRES_USER=pacs
|
||||||
|
POSTGRES_PASSWORD=pacs
|
||||||
0
docker/dcm4che/etc/localtime
Normal file
0
docker/dcm4che/etc/localtime
Normal file
1
docker/dcm4che/etc/timezone
Normal file
1
docker/dcm4che/etc/timezone
Normal file
@ -0,0 +1 @@
|
|||||||
|
America/New_York
|
||||||
78
docker/docker-compose-dcm4che.yml
Normal file
78
docker/docker-compose-dcm4che.yml
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
version: '3.5'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
ldap:
|
||||||
|
image: dcm4che/slapd-dcm4chee:2.4.44-15.0
|
||||||
|
logging:
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
ports:
|
||||||
|
- "389:389"
|
||||||
|
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||||
|
volumes:
|
||||||
|
- ./dcm4che/etc/localtime:/etc/localtime:ro
|
||||||
|
- ./dcm4che/etc/timezone:/etc/timezone:ro
|
||||||
|
- ./dcm4che/dcm4chee-arc/ldap:/var/lib/ldap
|
||||||
|
- ./dcm4che/dcm4chee-arc/slapd.d:/etc/ldap/slapd.d
|
||||||
|
networks:
|
||||||
|
- dcm4chee_default
|
||||||
|
db:
|
||||||
|
image: dcm4che/postgres-dcm4chee:11.1-15
|
||||||
|
logging:
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||||
|
volumes:
|
||||||
|
- ./dcm4che/etc/localtime:/etc/localtime:ro
|
||||||
|
- ./dcm4che/etc/timezone:/etc/timezone:ro
|
||||||
|
- ./dcm4che/dcm4chee-arc/db:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- dcm4chee_default
|
||||||
|
arc:
|
||||||
|
image: dcm4che/dcm4chee-arc-psql:5.15.0
|
||||||
|
logging:
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
- "8443:8443"
|
||||||
|
- "9990:9990"
|
||||||
|
- "11112:11112"
|
||||||
|
- "2575:2575"
|
||||||
|
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||||
|
environment:
|
||||||
|
WILDFLY_CHOWN: /opt/wildfly/standalone /storage
|
||||||
|
WILDFLY_WAIT_FOR: ldap:389 db:5432
|
||||||
|
depends_on:
|
||||||
|
- ldap
|
||||||
|
- db
|
||||||
|
volumes:
|
||||||
|
- ./dcm4che/etc/localtime:/etc/localtime:ro
|
||||||
|
- ./dcm4che/etc/timezone:/etc/timezone:ro
|
||||||
|
- ./dcm4che/dcm4chee-arc/wildfly:/opt/wildfly/standalone
|
||||||
|
- ./dcm4che/dcm4chee-arc/storage:/storage
|
||||||
|
networks:
|
||||||
|
- dcm4chee_default
|
||||||
|
viewer:
|
||||||
|
container_name: ohif-viewer
|
||||||
|
build:
|
||||||
|
context: ../
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
ports:
|
||||||
|
- '80:80'
|
||||||
|
# depends_on:
|
||||||
|
# - orthanc
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=production
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- dcm4chee_default
|
||||||
|
|
||||||
|
networks:
|
||||||
|
dcm4chee_default:
|
||||||
@ -103,20 +103,35 @@
|
|||||||
// Try going to:
|
// Try going to:
|
||||||
// http://localhost:5000/viewer/1.3.6.1.4.1.14519.5.2.1.1706.4996.216859690032335293073513900362
|
// http://localhost:5000/viewer/1.3.6.1.4.1.14519.5.2.1.1706.4996.216859690032335293073513900362
|
||||||
props.servers = {
|
props.servers = {
|
||||||
|
// "dicomWeb": [
|
||||||
|
// {
|
||||||
|
// "name": "Orthanc",
|
||||||
|
// "wadoUriRoot": "http://localhost:8899/wado",
|
||||||
|
// "qidoRoot": "http://localhost:8899/dicom-web",
|
||||||
|
// "wadoRoot": "http://localhost:8899/dicom-web",
|
||||||
|
// "qidoSupportsIncludeField": false,
|
||||||
|
// "imageRendering": "wadors",
|
||||||
|
// "thumbnailRendering": "wadors",
|
||||||
|
// "requestOptions": {
|
||||||
|
// "auth": "orthanc:orthanc",
|
||||||
|
// "logRequests": true,
|
||||||
|
// "logResponses": false,
|
||||||
|
// "logTiming": true
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
"dicomWeb": [
|
"dicomWeb": [
|
||||||
{
|
{
|
||||||
"name": "Orthanc",
|
"name": "DCM4CHEE",
|
||||||
"wadoUriRoot": "http://localhost:8899/wado",
|
"wadoUriRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado",
|
||||||
"qidoRoot": "http://localhost:8899/dicom-web",
|
"qidoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
"wadoRoot": "http://localhost:8899/dicom-web",
|
"wadoRoot": "http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs",
|
||||||
"qidoSupportsIncludeField": false,
|
"qidoSupportsIncludeField": true,
|
||||||
"imageRendering": "wadors",
|
"imageRendering": "wadors",
|
||||||
"thumbnailRendering": "wadors",
|
"thumbnailRendering": "wadors",
|
||||||
"requestOptions": {
|
"requestOptions": {
|
||||||
"auth": "orthanc:orthanc",
|
"requestFromBrowser": true,
|
||||||
"logRequests": true,
|
"auth": "admin:admin"
|
||||||
"logResponses": false,
|
|
||||||
"logTiming": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user