docker-compose.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. version: "3.8"
  2. services:
  3. fuseki:
  4. image: registry.rys.one/dtdesign/fuseki
  5. container_name: fuseki
  6. networks:
  7. local:
  8. ipv4_address: 172.40.200.10
  9. ports:
  10. - "3030:3030"
  11. restart: unless-stopped
  12. volumes:
  13. - "./fuseki:/fuseki"
  14. - "./fuseki-extra:/fuseki-extra"
  15. env_file:
  16. - "./config/fuseki.env"
  17. spendpoint:
  18. image: registry.rys.one/dtdesign/spendpoint
  19. container_name: spendpoint
  20. networks:
  21. local:
  22. ipv4_address: 172.40.200.20
  23. ports:
  24. - "8000:8000"
  25. # depends_on:
  26. # - models
  27. restart: unless-stopped
  28. volumes:
  29. - "./data:/app/data:ro"
  30. # env_file:
  31. # - "./config/spendpoint.env"
  32. outliers:
  33. image: registry.rys.one/dtdesign/dtdesign/outliers:main
  34. container_name: outliers
  35. networks:
  36. local:
  37. ipv4_address: 172.40.200.50
  38. ports:
  39. - "9090:9090"
  40. restart: unless-stopped
  41. volumes:
  42. - "./data:/app/data:ro"
  43. # env_file:
  44. # - "./config/outlier.env"
  45. networks:
  46. local:
  47. external: true
  48. # models:
  49. # image: registry.rys.one/dtdesign/models
  50. # container_name: models
  51. # networks:
  52. # web:
  53. # ipv4_address: 172.40.200.10
  54. # restart: unless-stopped
  55. # volumes:
  56. # - "./build:/app/build"
  57. # env_file:
  58. # - "./config/models.env"
  59. # graph-exploring-tool:
  60. # image: registry.rys.one/dtdesign/graph-exploring-tool
  61. # container_name: graph-exploring-tool
  62. # networks:
  63. # web:
  64. # ipv4_address: 172.40.200.30
  65. # depends_on:
  66. # - models
  67. # - spendpoint
  68. # restart: unless-stopped
  69. # volumes:
  70. # - "./palette:/app/palette:ro"
  71. # env_file:
  72. # - "./config/graph-exploring-tool.env"