|
@@ -4,6 +4,7 @@ services:
|
|
|
fuseki:
|
|
|
image: registry.rys.one/dtdesign/fuseki
|
|
|
container_name: fuseki
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "3030:3030"
|
|
|
restart: unless-stopped
|
|
@@ -16,6 +17,7 @@ services:
|
|
|
spendpoint:
|
|
|
image: registry.rys.one/dtdesign/spendpoint:dev
|
|
|
container_name: spendpoint
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "8000:8000"
|
|
|
restart: unless-stopped
|
|
@@ -25,6 +27,7 @@ services:
|
|
|
mocka:
|
|
|
image: registry.rys.one/dtdesign/mocka
|
|
|
container_name: mocka
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "7999:7999"
|
|
|
restart: unless-stopped
|
|
@@ -34,6 +37,7 @@ services:
|
|
|
outliers:
|
|
|
image: registry.rys.one/dtdesign/dtdesign/outliers:dev
|
|
|
container_name: outliers
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "9090:9090"
|
|
|
restart: unless-stopped
|
|
@@ -43,8 +47,9 @@ services:
|
|
|
drawio:
|
|
|
image: registry.rys.one/diagram/drawio:dev
|
|
|
container_name: drawio
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- - "8445:8080"
|
|
|
+ - "8080:8080"
|
|
|
- "8443:8443"
|
|
|
restart: unless-stopped
|
|
|
volumes:
|
|
@@ -65,6 +70,7 @@ services:
|
|
|
wee:
|
|
|
image: registry.rys.one/dtdesign/wee:dev
|
|
|
container_name: wee
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "8081:8081"
|
|
|
restart: unless-stopped
|
|
@@ -74,6 +80,7 @@ services:
|
|
|
backend:
|
|
|
image: registry.rys.one/dtdesign/drawio2oml/backend:dev
|
|
|
container_name: backend
|
|
|
+ network_mode: "host"
|
|
|
ports:
|
|
|
- "5000:5000"
|
|
|
restart: unless-stopped
|
|
@@ -81,5 +88,5 @@ services:
|
|
|
- "./data/backend/ontology/SystemDesignOntology2Layers:/app/ontology:Z"
|
|
|
- "./data/backend/shape_lib:/app/shape_lib:z"
|
|
|
environment:
|
|
|
- - WEE_ENDPOINT=http://wee:8081
|
|
|
- - FUSEKI_ENDPOINT=http://fuseki:3030
|
|
|
+ - WEE_ENDPOINT=http://localhost:8081
|
|
|
+ - FUSEKI_ENDPOINT=http://localhost:3030
|