Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2024
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. ---
  2.  
  3. services:
  4. ldap:
  5. image: dcm4che/slapd-dcm4chee:2.6.7-33.0
  6. logging:
  7. driver: json-file
  8. options:
  9. max-size: "10m"
  10. ports:
  11. - "389:389"
  12. environment:
  13. STORAGE_DIR: /storage/fs1
  14. volumes:
  15. - ./data/ldap:/var/lib/openldap/openldap-data
  16. - ./data/slapd.d:/etc/openldap/slapd.d
  17. db:
  18. image: dcm4che/postgres-dcm4chee:16.4-33
  19. logging:
  20. driver: json-file
  21. options:
  22. max-size: "10m"
  23. ports:
  24. - "5432:5432"
  25. environment:
  26. POSTGRES_DB: pacsdb
  27. POSTGRES_USER: pacs
  28. POSTGRES_PASSWORD: pacs
  29. volumes:
  30. - /etc/localtime:/etc/localtime:ro
  31. - /etc/timezone:/etc/timezone:ro
  32. - ./data/db:/var/lib/postgresql/data
  33. arc:
  34. image: dcm4che/dcm4chee-arc-psql:5.33.0
  35. logging:
  36. driver: json-file
  37. options:
  38. max-size: "10m"
  39. ports:
  40. - "8080:8080"
  41. - "8443:8443"
  42. - "9990:9990"
  43. - "9993:9993"
  44. - "11112:11112"
  45. - "2762:2762"
  46. - "2575:2575"
  47. - "12575:12575"
  48. environment:
  49. POSTGRES_DB: pacsdb
  50. POSTGRES_USER: pacs
  51. POSTGRES_PASSWORD: pacs
  52. WILDFLY_CHOWN: /storage
  53. WILDFLY_WAIT_FOR: ldap:389 db:5432
  54. depends_on:
  55. - ldap
  56. - db
  57. volumes:
  58. - /etc/localtime:/etc/localtime:ro
  59. - /etc/timezone:/etc/timezone:ro
  60. - ./data/wildfly:/opt/wildfly/standalone
  61. - ./data/storage:/storage
  62. ohif:
  63. image: ohif/app:latest
  64. ports:
  65. - 3000:80
  66. volumes:
  67. - ./app-config.js:/usr/share/nginx/html/app-config.js
  68. restart: unless-stopped
  69.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement