12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- version: "3.8"
- services:
- fuseki:
- image: registry.rys.one/dtdesign/fuseki
- container_name: fuseki
- networks:
- local:
- ipv4_address: 172.40.200.10
- ports:
- - "3030:3030"
- restart: unless-stopped
- volumes:
- - "./fuseki:/fuseki"
- - "./fuseki-extra:/fuseki-extra"
- env_file:
- - "./config/fuseki.env"
- spendpoint:
- image: registry.rys.one/dtdesign/spendpoint
- container_name: spendpoint
- networks:
- local:
- ipv4_address: 172.40.200.20
- ports:
- - "8000:8000"
- # depends_on:
- # - models
- restart: unless-stopped
- volumes:
- - "./data:/app/data:ro"
- # env_file:
- # - "./config/spendpoint.env"
- outliers:
- image: registry.rys.one/dtdesign/dtdesign/outliers:main
- container_name: outliers
- networks:
- local:
- ipv4_address: 172.40.200.50
- ports:
- - "9090:9090"
- restart: unless-stopped
- volumes:
- - "./data:/app/data:ro"
- # env_file:
- # - "./config/outlier.env"
- networks:
- local:
- external: true
- # models:
- # image: registry.rys.one/dtdesign/models
- # container_name: models
- # networks:
- # web:
- # ipv4_address: 172.40.200.10
- # restart: unless-stopped
- # volumes:
- # - "./build:/app/build"
- # env_file:
- # - "./config/models.env"
- # graph-exploring-tool:
- # image: registry.rys.one/dtdesign/graph-exploring-tool
- # container_name: graph-exploring-tool
- # networks:
- # web:
- # ipv4_address: 172.40.200.30
- # depends_on:
- # - models
- # - spendpoint
- # restart: unless-stopped
- # volumes:
- # - "./palette:/app/palette:ro"
- # env_file:
- # - "./config/graph-exploring-tool.env"
|