Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---
- services:
- ldap:
- image: dcm4che/slapd-dcm4chee:2.6.7-33.0
- logging:
- driver: json-file
- options:
- max-size: "10m"
- ports:
- - "389:389"
- environment:
- STORAGE_DIR: /storage/fs1
- volumes:
- - ./data/ldap:/var/lib/openldap/openldap-data
- - ./data/slapd.d:/etc/openldap/slapd.d
- db:
- image: dcm4che/postgres-dcm4chee:16.4-33
- logging:
- driver: json-file
- options:
- max-size: "10m"
- ports:
- - "5432:5432"
- environment:
- POSTGRES_DB: pacsdb
- POSTGRES_USER: pacs
- POSTGRES_PASSWORD: pacs
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /etc/timezone:/etc/timezone:ro
- - ./data/db:/var/lib/postgresql/data
- arc:
- image: dcm4che/dcm4chee-arc-psql:5.33.0
- logging:
- driver: json-file
- options:
- max-size: "10m"
- ports:
- - "8080:8080"
- - "8443:8443"
- - "9990:9990"
- - "9993:9993"
- - "11112:11112"
- - "2762:2762"
- - "2575:2575"
- - "12575:12575"
- environment:
- POSTGRES_DB: pacsdb
- POSTGRES_USER: pacs
- POSTGRES_PASSWORD: pacs
- WILDFLY_CHOWN: /storage
- WILDFLY_WAIT_FOR: ldap:389 db:5432
- depends_on:
- - ldap
- - db
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /etc/timezone:/etc/timezone:ro
- - ./data/wildfly:/opt/wildfly/standalone
- - ./data/storage:/storage
- ohif:
- image: ohif/app:latest
- ports:
- - 3000:80
- volumes:
- - ./app-config.js:/usr/share/nginx/html/app-config.js
- restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement