updating docker-compose files to adhere new way to deploy
This commit is contained in:
parent
e39e3dd5d5
commit
f8e8acd9e9
@ -1,15 +1,14 @@
|
||||
version: '3.5'
|
||||
|
||||
services:
|
||||
|
||||
ldap:
|
||||
image: dcm4che/slapd-dcm4chee:2.4.44-15.0
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-size: '10m'
|
||||
ports:
|
||||
- "389:389"
|
||||
- '389:389'
|
||||
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||
volumes:
|
||||
- ./dcm4che/etc/localtime:/etc/localtime:ro
|
||||
@ -23,9 +22,9 @@ services:
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-size: '10m'
|
||||
ports:
|
||||
- "5432:5432"
|
||||
- '5432:5432'
|
||||
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||
volumes:
|
||||
- ./dcm4che/etc/localtime:/etc/localtime:ro
|
||||
@ -38,13 +37,13 @@ services:
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-size: '10m'
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "8443:8443"
|
||||
- "9990:9990"
|
||||
- "11112:11112"
|
||||
- "2575:2575"
|
||||
- '8080:8080'
|
||||
- '8443:8443'
|
||||
- '9990:9990'
|
||||
- '11112:11112'
|
||||
- '2575:2575'
|
||||
env_file: ./dcm4che/docker-compose-dcm4che.env
|
||||
environment:
|
||||
WILDFLY_CHOWN: /opt/wildfly/standalone /storage
|
||||
@ -70,9 +69,9 @@ services:
|
||||
# - orthanc
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- REACT_APP_CONFIG=config/local_dcm4chee
|
||||
restart: always
|
||||
networks:
|
||||
- dcm4che_default
|
||||
|
||||
networks:
|
||||
dcm4che_default:
|
||||
networks: dcm4che_default:
|
||||
|
||||
@ -1,15 +1,14 @@
|
||||
version: '3.5'
|
||||
|
||||
services:
|
||||
|
||||
orthanc:
|
||||
container_name: orthanc
|
||||
image: jodogne/orthanc-plugins
|
||||
volumes:
|
||||
- ../sampledata:/sampledata
|
||||
ports:
|
||||
- "4242:4242"
|
||||
- "8042:8042"
|
||||
- '4242:4242'
|
||||
- '8042:8042'
|
||||
restart: always
|
||||
viewer:
|
||||
container_name: ohif-viewer
|
||||
@ -22,6 +21,7 @@ services:
|
||||
- orthanc
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- REACT_APP_CONFIG=config/local_orthanc
|
||||
restart: always
|
||||
volumes:
|
||||
- ../config/local_orthanc.js:/usr/share/nginx/html/servers.js
|
||||
@ -32,4 +32,3 @@ services:
|
||||
- 8899:80
|
||||
volumes:
|
||||
- ./nginx-proxy/conf/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
version: '3.5'
|
||||
|
||||
services:
|
||||
|
||||
viewer:
|
||||
container_name: ohif-viewer
|
||||
build:
|
||||
@ -11,5 +10,4 @@ services:
|
||||
- '80:80'
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
volumes:
|
||||
- ../config/public_dicomweb.js:/usr/share/nginx/html/servers.js
|
||||
- REACT_APP_CONFIG=config/public_dicomweb
|
||||
|
||||
Loading…
Reference in New Issue
Block a user